.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    padding: 1rem;
}

.auth-container { width: 100%; max-width: 420px; }

.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f1c40f, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.auth-logo p { color: #94a3b8; margin-top: 0.25rem; }

.auth-form {
    background: rgba(30,41,59,0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.auth-form h2 { color: white; margin-bottom: 1.5rem; text-align: center; }
.auth-form .form-desc { color: #94a3b8; text-align: center; margin-bottom: 1rem; font-size: 0.9rem; }
.auth-links { display: flex; justify-content: space-between; margin-top: 1rem; font-size: 0.85rem; }

.admin-login-form { max-width: 400px; margin: 4rem auto; }
