/* ============================================
   AUTH PAGES (Login, Setup)
   ============================================ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(ellipse at top left, rgba(224, 122, 95, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(242, 204, 143, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(129, 178, 154, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #fdfbf7 0%, #faedcd 25%, #fefae0 50%, #f5efe6 75%, #e8dcc8 100%);
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.auth-wrapper {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.25);
    margin-bottom: 1.25rem;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.auth-logo h1 {
    font-family: var(--font-brand);
    font-size: 2rem;
    color: var(--brown-800);
    font-weight: 700;
    letter-spacing: 0;
}

.auth-logo p {
    color: var(--brown-600);
    font-size: 1rem;
    font-weight: 400;
}

.auth-logo p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.auth-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow:
        0 20px 40px rgba(94, 83, 66, 0.08),
        0 4px 12px rgba(94, 83, 66, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.auth-card h2 {
    color: var(--brown-800);
    font-weight: 700;
    font-size: 1.5rem;
}

.auth-card h2 {
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-card .subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--gray-500);
}

