/* ==========================================================================
   VSC888 - AUTH PAGES STYLESHEET (Login/Register)
   Electric Cyan & Purple Neon Theme
   ========================================================================== */

/* ==========================================================================
   AUTH SECTION
   ========================================================================== */
.auth-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 4rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.03) 0%, transparent 50%, rgba(156, 39, 176, 0.03) 100%);
}

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

/* ==========================================================================
   AUTH CARD
   ========================================================================== */
.auth-card {
    background: linear-gradient(145deg, rgba(18, 18, 31, 0.95) 0%, rgba(10, 10, 18, 0.98) 100%);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 229, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */
.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15), 0 0 20px rgba(0, 229, 255, 0.1);
}

.form-hint {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
}

/* ==========================================================================
   AUTH DIVIDER
   ========================================================================== */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-primary), transparent);
}

.auth-divider span {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==========================================================================
   AUTH BUTTONS
   ========================================================================== */
.auth-card .btn {
    padding: 0.9375rem 1.5rem;
    font-size: 1rem;
}

.auth-card .btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.35);
}

.auth-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 229, 255, 0.5);
}

.auth-card .btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
}

.auth-card .btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(0, 229, 255, 0.05);
}

/* ==========================================================================
   TRUST SIGNALS (Auth Pages)
   ========================================================================== */
.auth-trust {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-primary);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (min-width: 480px) {
    .auth-section {
        padding: 3rem 1.5rem 5rem;
    }

    .auth-card {
        padding: 2.5rem 2rem;
    }

    .auth-header h1 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .auth-section {
        padding: 4rem 2rem 6rem;
    }

    .auth-card {
        padding: 3rem 2.5rem;
    }
}
