@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-green: #10b981;
    --primary-green-hover: #059669;
    --bg-color: #0c1322;
    --card-bg: #142036;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

h1, h2, h3, h4, .brand-headline, .brand-logo {
    font-family: 'Outfit', sans-serif;
}

.auth-body { 
    height: 100vh; 
    overflow: hidden; 
    background: var(--bg-color); 
}

.auth-split {
    display: flex;
    height: 100%;
}

/* ── Brand / left panel ─────────────────────────── */
.auth-brand {
    flex: 1.1;
    background: linear-gradient(140deg, #064e3b 0%, #065f46 50%, #0c1322 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    border-right: 1px solid var(--border-color);
}

.brand-inner { 
    position: relative; 
    z-index: 2; 
    max-width: 420px; 
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 28px;
}

.brand-headline {
    font-size: 38px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 14px;
}

.brand-sub {
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.brand-stats {
    display: flex;
    gap: 28px;
}

.bstat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.bstat span {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
}

/* ── Auth Form Panel ────────────────────────────── */
.auth-form-panel {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f172a;
}

@media (max-width: 900px) {
    .auth-brand { display: none; }
    .auth-form-panel { flex: 1; }
}
