/* Auth pages */
.auth-body { background: #0f1729; min-height: 100vh; }

.auth-shell {
    display: flex;
    min-height: 100vh;
}

.auth-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: linear-gradient(160deg, #0f1729 0%, #1a2540 60%, #0d2137 100%);
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,201,167,.12), transparent 70%);
    top: -80px; left: -80px;
}

.auth-brand { text-align: center; z-index: 1; }

.brand-icon-lg {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #00c9a7, #0094d4);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white;
    margin: 0 auto 16px;
    box-shadow: 0 8px 32px rgba(0,201,167,.3);
}

.auth-brand h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: white; margin: 0 0 8px;
    letter-spacing: -.5px;
}

.auth-brand p {
    color: rgba(255,255,255,.5);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

.auth-illustration {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
    width: 100%; max-width: 240px;
}

.floating-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 12px 18px;
    color: rgba(255,255,255,.75);
    font-size: .85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex; align-items: center; gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i { color: #00c9a7; font-size: 1rem; }
.fc1 { animation-delay: 0s; }
.fc2 { animation-delay: .6s; transform: translateX(16px); }
.fc3 { animation-delay: 1.2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(var(--tx, 0)); }
    50% { transform: translateY(-6px) translateX(var(--tx, 0)); }
}

.auth-right {
    width: 460px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-form-container { width: 100%; max-width: 380px; }

.auth-form h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f1729;
    margin-bottom: 4px;
}

.auth-subtitle { color: #64748b; font-size: .875rem; margin-bottom: 28px; }

.auth-link-text { font-size: .85rem; color: #64748b; }
.auth-link-text a { color: #00c9a7; font-weight: 500; text-decoration: none; }
.auth-link-text a:hover { text-decoration: underline; }

.demo-creds {
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(0,201,167,.06);
    border-radius: 8px;
    color: #475569;
    text-align: center;
}

@media (max-width: 768px) {
    .auth-left { display: none; }
    .auth-right { width: 100%; padding: 32px 24px; }
}
