/* ===== Auth Pages ===== */
.auth-body { min-height: 100vh; background: var(--bg); }

.auth-container {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.auth-centered { display: flex; align-items: center; justify-content: center; min-height: 100vh; }

.auth-left {
    background: linear-gradient(135deg, #0D1F4B 0%, #1a1a2e 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 3rem; position: relative; overflow: hidden;
}
.auth-left::before {
    content: ''; position: absolute; top: -50%; right: -30%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
}

.auth-branding { position: relative; z-index: 1; color: #fff; max-width: 420px; }
.auth-logo { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 24px; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; margin-bottom: 2rem; }
.logo-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 8px; font-family: 'Space Mono', monospace; font-size: 18px; font-weight: 700; color: #fff; }
.auth-branding h1 { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.auth-branding p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.6; margin-bottom: 2rem; }

.auth-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 2rem; }
.feature-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; }
.feature-check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: rgba(16,185,129,0.2); color: #10b981; border-radius: 50%; font-size: 12px; }

.auth-offer {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3); border-radius: 10px;
    font-size: 14px; color: rgba(255,255,255,0.9);
}
.offer-badge { background: var(--accent); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }

.auth-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 1.5rem; color: #fff; }
.stat-item span { font-size: 12px; color: rgba(255,255,255,0.6); }

.auth-right { display: flex; align-items: center; justify-content: center; padding: 3rem; }
.auth-form-container { width: 100%; max-width: 440px; }
.auth-form-container h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.auth-subtitle { color: var(--text-2); margin-bottom: 1.5rem; font-size: 14px; }
.auth-form { margin-bottom: 1.5rem; }
.auth-switch { text-align: center; font-size: 14px; color: var(--text-2); }
.auth-switch a { color: var(--accent); font-weight: 600; text-decoration: none; }
.forgot-link { font-size: 12px; color: var(--accent); text-decoration: none; font-weight: 500; }

@media (max-width: 768px) {
    .auth-container { grid-template-columns: 1fr; }
    .auth-left { display: none; }
    .auth-right { padding: 2rem; }
}
