/* ==========================================================
   VARIÁVEIS DE COR INSTITUCIONAIS (ASTORE / ACCOR)
   ========================================================== */
:root {
    --brand-blue: #002B41;       /* RGB(0, 43, 65) - Azul Oficial */
    --brand-blue-hover: #001C2B; /* Tom levemente mais escuro para hover */
    --brand-light-bg: #F0F4F8;   /* Fundo leve para ícones e badges */
    --bg-light: #F8FAFC;         /* Fundo da página */
    --card-bg: #FFFFFF;
}

body {
    background-color: var(--bg-light);
    font-family: 'Inter', sans-serif;
}

/* ==========================================================
   TOPBAR
   ========================================================== */

.topbar {
    background-color: var(--brand-blue);
}

.topbar-icon {
    height: 22px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* ==========================================================
   LAYOUT PRINCIPAL
   ========================================================== */

.login-page {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 44px);
    padding: 40px 0;
}

/* ==========================================================
   LOGOS
   ========================================================== */

.img-logo-astore {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.img-logo-accor {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.divider-line {
    display: inline-block;
    width: 1px;
    height: 36px;
    background-color: #CBD5E1;
}

/* ==========================================================
   INFORMAÇÕES DO EVENTO
   ========================================================== */

.text-navy {
    color: var(--brand-blue);
}

.event-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--brand-light-bg);
    border-radius: 12px;
}

.badge-free {
    background-color: var(--brand-light-bg);
    color: var(--brand-blue);
}

/* ==========================================================
   CARD DE LOGIN E BOTÕES
   ========================================================== */

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 40px 32px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #F1F5F9;
}

.login-header {
    margin-bottom: 24px;
    text-align: center;
}

.login-title {
    margin-bottom: 6px;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-blue);
}

.login-subtitle {
    font-size: 0.95rem;
    color: #64748B;
}

.input-custom {
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    padding: 12px 16px;
}

.input-custom:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(0, 43, 65, 0.15);
}

.btn-navy {
    background-color: var(--brand-blue);
    color: #ffffff;
    border-radius: 10px;
    padding: 12px;
    border: none;
    transition: all 0.2s ease;
}

.btn-navy:hover {
    background-color: var(--brand-blue-hover);
    color: #ffffff;
}

/* Utilitários de fonte */
.fs-7 { font-size: 0.875rem; }
.fs-8 { font-size: 0.775rem; }

/* ==========================================================
   RESPONSIVIDADE (MOBILE)
   ========================================================== */

@media (max-width: 576px) {
    .topbar-icon { height: 18px; }
    .img-logo-astore { height: 40px; }
    .img-logo-accor { height: 32px; }
    .divider-line { height: 28px; }
    .login-card { padding: 28px 20px; }
}