/* =========================
   CSS DO MODAL DE RECUPERAR SENHA
   Arquivo: esqueci-senha.css
   Diretório: ativerma\inicio\esqueci-senha\esqueci-senha.css
========================= */

/* Modal Esqueci a Senha */
.modal-esqueci-senha {
    max-width: 420px;
}

.modal-esqueci-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1672d8, #1363bd);
    color: #ffffff;
}

.modal-esqueci-header .modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.modal-esqueci-header .modal-title i {
    font-size: 1.4rem;
}

.modal-esqueci-senha .modal-body {
    padding: 2rem;
}

.esqueci-info {
    background: #eff6ff;
    border-left: 4px solid #1672d8;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.esqueci-info p {
    color: #1e40af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.btn-esqueci-submit {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #1672d8, #1363bd);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(22, 114, 216, 0.3);
    margin-top: 1rem;
}

.btn-esqueci-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 114, 216, 0.4);
}

.esqueci-volta {
    text-align: center;
    margin-top: 1.5rem;
}

.esqueci-volta a {
    color: #6B7280;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.esqueci-volta a:hover {
    color: #1672d8;
}

@media (max-width: 480px) {
    .modal-esqueci-senha {
        max-width: 95%;
    }
    
    .modal-esqueci-senha .modal-body {
        padding: 1.5rem;
    }
}