/* Auth Pages — Login, Register, Forgot Password */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    background: var(--bg-primary);
}

.auth-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 191, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}
.auth-logo-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.auth-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
}
.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

.auth-form {
    margin-top: 1.5rem;
}
.auth-form .form-group { margin-bottom: 1rem; }
.auth-form .btn { margin-top: 0.5rem; }

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.auth-links a {
    color: var(--primary);
    font-weight: 600;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.auth-divider span {
    padding: 0 1rem;
}

/* Right decoration panel */
.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0,191,166,0.05), rgba(59,130,246,0.05));
    border-left: 1px solid var(--border);
}
.auth-info {
    max-width: 400px;
}
.auth-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.auth-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
}
.auth-feature-icon {
    font-size: 1.3rem;
    width: 32px;
    flex-shrink: 0;
}
.auth-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.auth-feature-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .auth-right { display: none; }
    .auth-card { padding: 2rem 1.5rem; }
}
