/* =====================================================
   FASTIOR AUTH PAGES (Login, Register, Forgot, Reset)
   Bespoke, High-Performance Modern Aesthetic
   ===================================================== */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #070a12;
    background-image: 
        radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    padding: 32px 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #f8fafc;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.auth-card__header {
    text-align: center;
    padding: 36px 32px 16px;
}

.auth-card__header .fastior-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.auth-card__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.auth-card__subtitle {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.auth-card__body {
    padding: 16px 32px 32px;
}

.auth-card__footer {
    padding: 16px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 15, 29, 0.5);
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

.auth-card__footer a {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}

.auth-card__footer a:hover {
    color: #93c5fd;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.auth-form .form-input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(7, 10, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #f8fafc;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.auth-form .form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    background: rgba(7, 10, 18, 0.85);
}

.auth-form .form-input::placeholder {
    color: #475569;
}

.auth-form .btn--primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.auth-form .btn--primary:hover {
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    transform: translateY(-1px);
}

.auth-links {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
    font-size: 13px;
}

.auth-links a {
    color: #60a5fa;
    text-decoration: none;
}

.auth-links a:hover {
    color: #93c5fd;
}

.auth-error {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-success {
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
