.div-logo,
.div-forms {
    height: 100vh;
}

.div-forms {
    /* background-color: #172937; */
    background-color: #0197a8;
}

.div-logo img {
    max-width: 100%;
    height: 50%;
}

#loginForm {
    margin: 2%;
}

#forgot-password {
    margin-top: 10px;
    font-size: 14px;
    color: white;
    text-decoration: underline;
}

#btn-entrar {
    margin-top: 30px;
    padding: 10px 20px;
    /* background-color: #0197a8; */
    background-color: #172937;
    color: white;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}

.position-relative {
    position: relative;
}

#password-checklist li {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
}

#password-checklist li i {
    margin-right: 10px;
}

#password-checklist li.checked i {
    color: green;
}

#password-checklist li.unchecked i {
    color: red;
}

#password-checklist {
    color: gainsboro;
    list-style: none;
}

.field-icon {
    position: absolute;
    right: 10px;
    /* Ajuste conforme necessário */
    top: 50%;
    transform: translateY(50%);
    cursor: pointer;
    color: gray;
    z-index: 10;
}

.form-control {
    padding-right: 40px;
}

@media (max-width: 767.98px) {
    .div-logo {
        height: 50vh;
    }

    .div-forms {
        height: 50vh;
    }

    .div-logo img {
        max-width: 60%;
    }
}

/* Desfocar fundo quando a modal estiver ativa */
.blurred-background {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

/* Estilos da modal */
.modal-logo {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1050;
}

.modal-logo img {
    width: 150px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.card-btn {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0px;
}

/* Efeito hover */
.card-btn:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
