﻿/* ==========================================================
   CSS DO LOGIN DO CLIENTE - TEMA "CORPORATE CLEAN"
   ========================================================== */

/* --- Layout da Página --- */
body#page-login-loja {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

#page-login-loja .container {
    max-width: 450px;
    width: 100%;
    margin: 0;
}

/* --- Títulos e Textos --- */
#page-login-loja h2, #page-login-loja h3 {
    text-align: center;
}

#page-login-loja h3 {
    line-height: 1.6;
}

/* --- Botão Principal --- */
#btnLogin {
    width: 100%;
    margin-top: 25px;
    padding: 12px;
    font-size: 16px;
    /* Estilo herdado da classe .btn-padrao */
}

/* --- Mensagens de Status (Sucesso/Erro) --- */
#lblStatus, #lblError {
    text-align: center;
    display: block;
    margin-top: 15px;
    font-weight: 500;
}

    #lblStatus[style*="LightGreen"] {
        color: var(--success) !important;
    }

    #lblError[style*="Yellow"] {
        color: var(--danger) !important;
    }

/* --- Links Inferiores --- */
.links-container {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}

    .links-container a {
        display: block; /* Um link por linha */
        color: var(--text-soft);
        margin-top: 10px;
    }

        .links-container a:hover {
            color: var(--primary);
        }

/* --- 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;
}


.logo-area {
    display: flex;
    align-items: center;
    justify-content: center; /* centraliza no card */
    gap: 10px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.icon-logo {
    color: var(--success); /* verde igual ao painel */
    font-size: 26px;
}

.logo-text {
    font-weight: 700;
    font-size: 22px;
}
