.div-user-autenticar {
    max-width: 370px;
    width: 400px;
    height: 100vh;
    margin: 5%;
    padding: 0;
    position: fixed;
    left: 10%;
    top: 0;
}

.div-user-autenticar .card {
    max-width: 400px;
    margin: auto;
}

.div-user-autenticar .card .card-body {
    background-color: black;
    background: transparent;
}

.div-user-autenticar .card .card-body {
    background-color: rgba(0, 0, 0, 0.25) !important;
    border-radius: 20px;
}




.div-user-autenticar .card .card-body .card-top {
    text-align: center;
    margin-bottom: 0px;
    padding-top: 0px;
}

.div-user-autenticar .card .card-body .card-top img {
    margin-bottom: 0px;
    max-height: 50px;
    max-width: 35%;
}

.div-user-autenticar .card .card-footer {
    margin-top: 30px;
    padding-top: 20px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.div-user-autenticar .card .card-footer a {
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.div-user-autenticar .card .card-footer a:focus,
.div-user-autenticar .card .card-footer a:active {
    outline: none !important;
    box-shadow: none !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Ajuste específico para os "olhos" e efeito blur nos inputs */
.div-user-autenticar .input-group {
    background-color: rgba(43, 43, 43, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.div-user-autenticar .input-group .form-control {
    background-color: transparent !important;
    border: none !important;
    color: #fff !important;
    box-shadow: none !important;
}

.div-user-autenticar .input-group .btn-outline-secondary.toggle-password {
    background-color: transparent !important;
    border: none !important;
    color: #8c8c8c !important;
    transition: color 0.3s ease;
}

.div-user-autenticar .input-group .btn-outline-secondary.toggle-password:hover {
    color: #fff !important;
}

.div-user-autenticar .input-group-text {
    background-color: transparent !important;
    border: none !important;
    color: #8c8c8c !important;
}


.form-check-input:checked {
    background-color: rgb(0, 255, 26);
    border-color: #00ff80ff;
}

.form-check-label a {
    color: rgb(51, 255, 0);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
    color: rgb(51, 255, 0);
}

@media screen and (max-width: 991px) {
    .div-user-autenticar {
        left: 5%;
        width: 90%;
    }
}

@media screen and (max-width: 768px) {

    /* Removido o display:none para permitir o trailer no mobile */
    .div-user-autenticar {
        position: fixed;
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh;
        margin: 0 !important;
        padding: 10px !important;
        left: 0 !important;
        top: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        background: transparent;
    }

    .div-user-autenticar .card {
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .div-user-autenticar .card .card-body {
        padding: 1rem;
        background: transparent !important;
    }


    .navbar {
        display: none !important;
    }

    .div-user-autenticar .card .card-body .card-top img {
        margin-bottom: 2rem;
    }

    .div-user-autenticar .card .card-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        margin-top: 2rem;
    }

    /* Ajuste para inputs no mobile ficarem maiores e mais fáceis de tocar */
    .form-control {
        height: 50px;
        font-size: 16px;
        /* Evita zoom automático no iOS */
    }

    .btn-one {
        height: 50px;
        font-size: 1.1rem;
    }
}