    .DIVBuscaComissao{
        margin-top: 100px;
        width: 650px;
        padding: 20px 30px;
        border-radius: 30px;
        background: var(--pallet-white);
        box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px #ffffff;
    }    
    
    .DIVBuscaComissao form{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        padding: 50px 100px;
    }

    .DIVBuscaComissao label{
        font-size: 20px;
        font-weight: 500;
        color: #161623;
    }

    .DIVBuscaComissao input, 
    .DIVBuscaComissao select{
        width: 100%;
        padding: 15px 10px;
        border: 0;
        border-bottom: 1px solid #161623;
        -webkit-appearance: none;
        background: none;
    }

    .DIVBuscaComissao button{
        font: var(--font-button);
        background: var(--pallet-blue);
        width: 100%;
        padding: 15px 10px;
        cursor: pointer;
        margin-top: 20px;
        border-radius: 5px;
        border: 1px solid var(--pallet-blue);
        cursor: pointer;
        color: var(--pallet-white);
        transition: all .3s ease-in-out;
        text-transform: uppercase;
    }

    .checkbox {
        display: none;
      }
      
      .slider {
        width: 60px;
        height: 30px;
        background-color: lightgray;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        align-items: center;
        border: 4px solid transparent;
        transition: .3s;
        box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25) inset;
        cursor: pointer;
      }
      
      .slider::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: #fff;
        transform: translateX(-30px);
        border-radius: 20px;
        transition: .3s;
        box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
      }
      
      .checkbox:checked ~ .slider::before {
        transform: translateX(30px);
        box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
      }
      
      .checkbox:checked ~ .slider {
        background-color: #2196F3;
      }
      
      .checkbox:active ~ .slider::before {
        transform: translate(0);
      }