.switch2 {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.switch2 .switch-wrapper2 {

    width: 3rem;
    height: 1.6rem;
    position: relative;
}

.switch2 .switch-wrapper2 .switch-button2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 40px;
    background-color: rgba(0, 195, 255);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.switch2 .switch-wrapper2 .switch-button2::before {
    content: "";
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: 4px;
    border-radius: 50%;
    transition: .4s all ease;
    background-color: white;
}


.switch2 .switch-wrapper2 input:checked+.switch-button2::before {
    transform: translateX(1.5rem);
    background-color: white;
    transition: .4s all ease;
}


.forms {
    height: max-content;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
    border-radius: 5px;
    margin: 40px auto;
    background-color: white;
    width: 700px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 20px;

    .campos {
        justify-content: center;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin: auto;
        align-items: center;
    }

    input {
        background-color: rgb(255, 255, 255);
        outline: none;
        padding: 8px;
        border: 0;
        border-radius: 3px;
        border: 1px solid black;
        width: 250px;
        transition: .2s;
    }

    input:focus {
        border: 1px solid rgba(0, 195, 255, 0.5);
        box-shadow: 0px 0px 0px 4.5px rgb(0, 195, 255, 0.2);
    }

    input[type="checkbox"] {
        display: none;
    }

    input[type="radio"] {
        width: max-content;
        margin-right: 10px;
    }

    input[type="radio"]:focus {
        box-shadow: none;
    }
}

.switch {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.switch .switch-wrapper {

    width: 3rem;
    height: 1.6rem;
    position: relative;
}

.switch .switch-wrapper .switch-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 40px;
    background-color: red;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.switch .switch-wrapper .switch-button::before {
    content: "";
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: 4px;
    border-radius: 50%;
    transition: .4s all ease;
    background-color: white;
}

.switch .switch-wrapper input:checked+.switch-button {
    background-color: rgb(0, 200, 0);
}


.switch .switch-wrapper input:checked+.switch-button::before {
    transform: translateX(1.5rem);
    background-color: white;
    transition: .4s all ease;
}

@media (max-width: 991px) {
    .forms {
        flex-direction: column;
        width: 85%;
        gap: 20px;
        margin: 40px auto;
        height: max-content;
        align-items: center;
        padding: 10px;
    }

    .aceitar-notificacao {

        width: 85%;

        .text-permissao {
            width: 210px;
        }
    }

}

.camp_btt {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    gap: 5px;
    justify-content: center;

    .btt {
        background-color: transparent;
        background-color: black;
        border: 0px;
        color: white;
        border-radius: 8px;
        cursor: pointer;
        margin-top: 10px;
        font-size: 100%;
        padding: 10px;
        width: 270px;
    }

    .btt:nth-child(2) {

        background-color: transparent;
        background-color: red;
        border: 0px;
        color: white;
        border-radius: 8px;
        cursor: pointer;
        margin-top: 10px;
        font-size: 100%;
    }
}

.camp_cad {
    margin: 20px;
}

.camp_dd_pessoais {
    margin-bottom: 20px;
}

.aceitar-notificacao {
    width: max-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 20px auto;
    gap: 10px;
}