/* ============================================================
   Menu-Carta — Auth Views (Login, Register, Recovery)
   ============================================================ */

.auth-body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
}

/* ── Auth Card (Common) ── */
.auth-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-logo {
    text-align: center;
    margin-bottom: 25px;
}

.auth-logo h1 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin: 0;
}

.auth-logo span {
    color: var(--c-primary);
}

.auth-title {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-text);
}

.auth-subtitle {
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.875rem;
    color: var(--c-text-secondary);
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
}

.auth-links a {
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ── Login Split Screen Layout ── */
.login-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.login-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #fff;
}

.login-brand__logo {
    width: 72px;
    height: 72px;
    background: var(--c-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
}

.login-brand h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.login-brand p {
    font-size: 1rem;
    opacity: 0.7;
    text-align: center;
    max-width: 320px;
}

.login-form-wrapper {
    width: 100%;
    max-width: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--c-text-secondary);
}

.login-footer a {
    color: var(--c-primary);
    font-weight: 600;
}

/* ── Register Specific ── */
.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #666;
}

.benefit span {
    font-size: 1rem;
}

.slug-preview {
    font-size: 0.75rem;
    color: #999;
    margin-top: 4px;
}

.slug-preview code {
    color: var(--c-primary);
    background: var(--c-primary-light);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ── Password Reset Specific ── */
.password-hint {
    font-size: 0.75rem;
    color: #999;
    margin-top: 4px;
}

/* ── Media Queries ── */
@media (max-width: 768px) {
    .login-brand { display: none; }
    .login-form-wrapper { max-width: 100%; }
    .auth-card { padding: 2rem; }
}
