/* ==========================================================================
   M98 - AUTH PAGES STYLESHEET
   Login & Register Page Styles
   ========================================================================== */

/* Auth Section */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 6rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

/* Auth Card */
.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-md);
    transition: all 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, 212, 255, 0.15);
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Auth Buttons */
.auth-form .btn-primary {
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1.0625rem;
}

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

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

.auth-divider span {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   TRUST SIGNALS
   ========================================================================== */
.trust-signals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-primary);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
    min-width: 100px;
}

.trust-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

.trust-item svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.trust-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 480px) {
    .auth-card {
        padding: 2.5rem 2rem;
    }

    .trust-signals {
        gap: 1rem;
    }

    .trust-item {
        min-width: 110px;
    }
}

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

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

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

    .trust-signals {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
        gap: 1.25rem;
    }

    .trust-item {
        padding: 1rem 1.25rem;
        min-width: 120px;
    }

    .trust-item span {
        font-size: 0.8125rem;
    }
}

@media (min-width: 1024px) {
    .auth-header h1 {
        font-size: 1.875rem;
    }
}
