/* ═══════════════════════════════════════════════
   Auth Pages — Login, Register, Password Reset
   ═══════════════════════════════════════════════ */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 229, 195, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(192, 132, 252, 0.05) 0%, transparent 50%),
        var(--bg);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.auth-footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .auth-card {
        padding: 28px 20px;
    }
}

/* ── Split Layout (Register) ── */
.auth-split {
    display: flex;
    max-width: 820px;
    width: 100%;
    gap: 0;
}

.auth-split .auth-card {
    flex: 1;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    max-width: none;
}

.auth-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(0, 229, 195, 0.08) 0%, rgba(192, 132, 252, 0.06) 100%);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    align-items: center;
}

.auth-sidebar-content {
    width: 100%;
}

.sidebar-logo {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-light), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.auth-sidebar h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.auth-sidebar p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.auth-benefits {
    list-style: none;
    padding: 0;
}

.auth-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid rgba(30, 42, 69, 0.5);
    line-height: 1.4;
}

.auth-benefits li:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .auth-split {
        flex-direction: column;
        max-width: 420px;
    }
    .auth-sidebar {
        width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-right: 1px solid var(--border);
        border-bottom: none;
        padding: 28px 24px;
    }
    .auth-split .auth-card {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
}
