﻿/* ==========================================================
   CSS COMPLETO DO ESQUECI SENHA - TEMA "CORPORATE CLEAN"
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* --- Reset Básico e Cores do Tema --- */
:root {
    --bg-page: #f1f5f9;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --text: #0f172a;
    --text-soft: #475569;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --success: #16a34a;
    --danger: #dc2626;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

    /* --- Layout da Página --- */
    body#page-esqueci-senha {
        font-family: 'Poppins', sans-serif;
        background-color: var(--bg-page);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 20px;
    }

/* --- Container Principal --- */
#page-esqueci-senha .container {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    max-width: 480px;
    width: 100%;
    margin: 0;
}

/* --- Títulos e Textos --- */
#page-esqueci-senha h2, #page-esqueci-senha h3 {
    text-align: center;
    color: var(--text);
}

#page-esqueci-senha h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}

#page-esqueci-senha h3 {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-soft);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

label {
    font-weight: 600;
    display: block;
    margin: 20px 0 8px;
    color: var(--text-soft);
    font-size: 14px;
    text-align: left;
}

/* --- Formulários e Botões --- */
.form-control {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: var(--bg-page);
    color: var(--text);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all .2s ease-in-out;
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

.btn-padrao {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color .2s ease;
}

    .btn-padrao:hover {
        background-color: var(--primary-hover);
    }

/* --- Mensagens de Status (Sucesso/Erro) --- */
#lblStatus {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid;
}

    #lblStatus:empty {
        display: none;
    }
    /* Esconde a barra quando não tem texto */
    #lblStatus[style*="LightGreen"] {
        color: #166534;
        background-color: #dcfce7;
        border-color: #86efac;
    }

    #lblStatus:not([style*="LightGreen"]) {
        color: #991b1b;
        background-color: #fee2e2;
        border-color: #fca5a5;
    }

/* --- Links e Rodapé --- */
.link-voltar {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

    .link-voltar:hover {
        color: var(--primary);
        text-decoration: underline;
    }

/* --- Rodapé --- */
.footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #10182B; /* azul forte */
    color: #ffffff; /* texto branco */
    font-size: 13px;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* leve contraste */
    z-index: 1000;
}

