/* =========================
   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-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: #1672d8;
    background: linear-gradient(to bottom, #3a8df0, #1672d8);
    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);
}

.btn-esqueci-submit:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(22, 114, 216, 0.6);
}

.btn-esqueci-submit:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(22, 114, 216, 0.4), 0 4px 12px rgba(22, 114, 216, 0.3);
}

.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;
}

/* Estados do Modal */
.esqueci-estado {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tela de Confirmação */
.esqueci-confirmacao-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.esqueci-confirmacao-icon i {
    font-size: 4rem;
    color: #10b981;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.esqueci-confirmacao-texto {
    text-align: center;
    margin-bottom: 1.5rem;
}

.esqueci-confirmacao-texto h3 {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.esqueci-confirmacao-texto p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.esqueci-confirmacao-texto strong {
    color: #1672d8;
    font-weight: 600;
}

.esqueci-info-dica {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.esqueci-info-dica p {
    color: #92400e;
}

.esqueci-info-dica i {
    color: #f59e0b;
    margin-right: 6px;
}

/* Seção de Reenvio */
.esqueci-reenvio-section {
    text-align: center;
    margin: 1.5rem 0;
}

.esqueci-reenvio-texto {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.btn-esqueci-reenviar {
    background: #ffffff;
    color: #1672d8;
    border: 2px solid #1672d8;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-esqueci-reenviar:hover {
    background: rgba(22, 114, 216, 0.05);
    transform: translateY(-2px);
}

.btn-esqueci-reenviar:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(22, 114, 216, 0.25);
}

.btn-esqueci-reenviar:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(22, 114, 216, 0.35);
}

.btn-esqueci-reenviar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 480px) {
    .modal-esqueci-senha {
        max-width: 95%;
    }
    
    .modal-esqueci-senha .modal-body {
        padding: 1.5rem;
    }
}