/* ============================================
   Auth Pages (Login / Register)
   ============================================ */

.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 60%),
        #0a0a14;
}

/* Animated orbs */
.bg-orbs {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.12);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.08);
    bottom: -80px;
    right: -80px;
    animation-delay: 3s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(59, 130, 246, 0.06);
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

/* Auth container */
.auth-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Auth card */
.auth-card {
    background: var(--bg-card2);
    border: 1px solid var(--border-purple);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    animation: scaleIn 0.4s ease;
}

/* Logo */
.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.logo-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.logo-title {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.logo-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

/* Auth footer */
.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.link-purple {
    color: var(--purple-light);
    text-decoration: none;
    font-weight: 600;
}

.link-purple:hover {
    color: var(--pink);
    text-decoration: underline;
}

/* Info card below auth card */
.auth-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.info-icon {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-card {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}