.cadastro {
    padding-left: 40px;
    margin-bottom: 27px;
}

.titulo {    
    font-size: 40px;
}

.controles {
    display: flex;
    justify-content: left;
    padding: 50px 0;
    font-size: 25px;
    font-family: Rajdhani-semi, sans-serif;
    color: #770e18;
    gap: 90px;
}

    .controles > div {
        display: flex;
        align-items: center;
        gap: 10px;
        
    }

    .controles input[type="radio"] {
        width: 20px;
        height: 20px;
    }

.dados-cadastrais {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

    .dados-cadastrais::after {
        content: "";
        width: 100%;
        height: 1px;
        background: #191919;
        display: inline-block;
        margin-bottom: 3px;
        margin-left: 5px;
    }

    .dados-cadastrais .subtitulo_1 {
        font-size: 20px;
        width: 180px;
    }

.dados-cliente.ativo {
    display: block !important;
    border-radius: 30px;
    background: transparent;
    box-shadow: 5px 5px 8px #191919;
    padding: 20px 35px;
    animation: show 0.5s forwards;
}

.dados-cliente {
    display: none;
}

@keyframes show {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.campos {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 85px;
    padding-left: 25px;
}

.col-md-6 {
    width: 50%;
}
.col-md-4 {
    width: 33.33%;
}
.col-md-3 {
    width: 25%;
}
.olho {
    width: 20px;
    margin-left: calc(100% - 40px);
    margin-top: -46px;
}

    .campos > div {
        display: flex;
        flex-direction: column;
        float: left;
        height: 110px;
        padding:5px;
    }

    .campos label.subtitulo_1 {
        font-size: 16px !important;
        border-bottom: #770e18 1px solid;
        margin-bottom: 10px;
    }

    .radio-label {
        font-family: inherit; /* Use the same font as the rest of the page */
        font-size: inherit; /* Use the same font size as the rest of the page */
        line-height: inherit; /* Use the same line height as the rest of the page */
        margin-left: 5px; /* Adjust margin as needed */
        display: flex;
        align-items: center; /* Vertically align text with the center of the buttons */
    }


    .campos > div input {
        height: 38px;
        border-radius: 15px;
        outline: none;
        background: transparent;
        border: #191919 1px solid;
        padding: 10px;
        margin-bottom: 18px;
    }

.queda {
    grid-column: -1 / 1;
}

.voltar-chat {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}

.voltar.btn {
    background-color: #d7d7d7;
    color: #3c3c3b;
    width: 115px;
    box-shadow: 5px 5px 8px #191919;
}

.subtitulo_contato {
    position: relative;
}

.notificacao {
    font-size: 12px;
    font-weight: bold;
    background: #e18f2e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 24px;
    top: -6px;
    border-radius: 50%;
}
/*sweet alert style*/

div:where(.swal2-container).swal2-center > .swal2-popup {
    border-radius: 40px !important;
    font-size: 14px !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
    border-radius: 20px !important;
    background-color: #770e18 !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    border-radius: 20px !important;
    background-color: #f08f00 !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-deny {
    border-radius: 20px !important;
    background-color: #f08f00 !important;
}

div:where(.swal2-icon).swal2-info {
    border-color: #770e18 !important;
    color: #770e18 !important;
}

.swal2-icon.swal2-error {
    border-color: #770e18 !important;
    color: #770e18 !important;
}

/*sweet alert style*/

/* responsivo */
@media only screen and (min-width: 900px) and (max-width: 1150px) {
    .campos {
        grid-column-gap: 40px;
    }
}

@media only screen and (min-width: 788px) and (max-width: 899px) {
    .campos {
        grid-template-columns: 1fr;
        padding-left: 0;
    }
}

@media only screen and (min-width: 551px) and (max-width: 787px) {
    .campos {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .voltar-chat {
        margin-top: 30px;
    }

    .cadastro {
        padding-left: 0;
    }

    .dados-cadastrais .subtitulo_1 {
        width: 250px;
    }
}

@media only screen and (max-width: 550px) {
    .campos {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .voltar-chat {
        margin-top: 30px;
    }

    .cadastro {
        padding-left: 0;
    }

    .dados-cadastrais .subtitulo_1 {
        font-size: 20px;
        width: 250px;
    }

    .cadastro.btn {
        background-color: red;
        color: #3c3c3b;
        width: 115px;
        box-shadow: 5px 5px 8px #191919;
    }
}
