/* ============================================
   Auth Pages Styles
   Login, Signup, Password Reset
   ============================================ */

.auth-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.auth-box {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-8);
    border: 1px solid var(--border-subtle);
}

/* Brand/Logo */
.auth-brand {
    text-align: center;
    margin-bottom: var(--space-8);
}

.auth-brand .brand-link {
    display: inline-block;
    text-decoration: none;
}

.auth-brand .logo-text {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    background: var(--gradient-brand-horizontal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.auth-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.auth-header h1 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.auth-header p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

/* Trust Badges in Auth Header */
.auth-header .trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
    flex-wrap: wrap;
}

.auth-header .icon-badge {
    background: rgba(113, 44, 249, 0.08);
    border: 1px solid rgba(113, 44, 249, 0.15);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.auth-header .icon-badge-wrapper {
    display: inline-block;
}

.auth-header .icon-badge svg {
    width: 16px;
    height: 16px;
}

.auth-header .icon-badge .text-success {
    color: var(--color-success);
}

.auth-header .icon-badge .text-primary {
    color: var(--color-primary);
}

.auth-header .icon-badge .text-info {
    color: var(--color-info);
}

/* Footer */
.auth-footer {
    margin-top: var(--space-6);
    text-align: center;
}

.auth-footer p {
    margin-bottom: var(--space-2);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.auth-footer a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: opacity 0.2s;
}

.auth-footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.auth-footer .text-small {
    font-size: var(--text-xs);
    margin-top: var(--space-4);
}

/* Dark theme adjustments */
.auth-box {
    background: var(--bg-surface);
    border-color: var(--border-color);
}

/* Responsive */
@media (max-width: 480px) {
    .auth-box {
        padding: var(--space-6);
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }
    
    .auth-container {
        max-width: 100%;
    }
}
