/*
 * AILA Tech Bundled CSS File
 * Generated: 2026-01-24 11:15:23
 * 
 * This file combines multiple CSS files into one for better performance.
 * Do not edit directly - edit source files and re-run merge_assets.py
 */


/* ========== premium-auth.css ========== */
/*
 * AILA Tech - Premium Auth Pages Styles
 * Unified styling for Login, Signup, Forgot Password, Reset Password, Verify OTP
 * v1.0 - Premium Design with AILA Brand Colors
 */

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
  --auth-primary: #0066FF;
  --auth-primary-dark: #0052CC;
  --auth-secondary: #00C48C;
  --auth-secondary-dark: #00A070;
  --auth-gradient: linear-gradient(135deg, #0066FF 0%, #00C48C 100%);
  --auth-bg-gradient: linear-gradient(135deg, #0A1628 0%, #0D2137 40%, #132A45 100%);
  --auth-text: #1F2937;
  --auth-text-muted: #6B7280;
  --auth-border: #E5E7EB;
  --auth-success: #10B981;
  --auth-error: #EF4444;
  --auth-warning: #F59E0B;
}

/* ================================================
   BASE STYLES
   ================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif !important;
  background: var(--auth-bg-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

/* Ensure all elements inherit the base font, excluding Font Awesome icons */
body *:not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not([class*="fa-"]) {
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif !important;
}

/* ================================================
   DIGITAL BACKGROUND EFFECTS
   ================================================ */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 98%, rgba(0, 102, 255, 0.08) 100%),
    linear-gradient(0deg, transparent 98%, rgba(0, 196, 140, 0.08) 100%);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 196, 140, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
}

/* Digital floating elements */
.digital-element {
  position: absolute;
  color: rgba(0, 196, 140, 0.12);
  font-size: 1.5rem;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(0, 196, 140, 0.2));
}

.digital-element:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.digital-element:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; }
.digital-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.digital-element:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }
.digital-element:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }
.digital-element:nth-child(6) { top: 60%; right: 5%; animation-delay: 5s; }

/* Circuit lines */
.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 196, 140, 0.2), transparent);
  height: 1px;
  width: 100%;
  animation: circuitFlow 4s linear infinite;
}

.circuit-line:nth-child(7) { top: 20%; animation-delay: 0s; }
.circuit-line:nth-child(8) { top: 40%; animation-delay: 1s; }
.circuit-line:nth-child(9) { top: 60%; animation-delay: 2s; }
.circuit-line:nth-child(10) { top: 80%; animation-delay: 3s; }

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes circuitFlow {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ================================================
   AUTH NAVIGATION
   ================================================ */
.auth-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  padding: 0.75rem 0;
}

.auth-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.auth-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.auth-nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.auth-nav-logo span {
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--auth-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-nav-links {
  display: flex;
  gap: 0.75rem;
}

.auth-nav-link {
  color: var(--auth-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.auth-nav-link:hover {
  color: var(--auth-primary);
  background: rgba(0, 102, 255, 0.08);
}

.auth-nav-link.active {
  color: white;
  background: var(--auth-gradient);
}

/* ================================================
   AUTH CONTAINER (CARD)
   ================================================ */
.auth-container,
.login-container,
.signup-container,
.forgot-container,
.reset-container,
.verification-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 24px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 480px;
  padding: 2.5rem;
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.6s ease-out;
  margin-top: 70px;
}

/* Auth header section */
.auth-header,
.login-header,
.signup-header,
.forgot-header,
.reset-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1,
.login-header h1,
.signup-header h1,
.forgot-header h1,
.reset-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--auth-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.auth-header h1::after,
.login-header h1::after,
.signup-header h1::after,
.forgot-header h1::after,
.reset-header h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--auth-gradient);
  margin: 0.75rem auto 0;
  border-radius: 4px;
}

.auth-header p,
.login-header p,
.signup-header p,
.forgot-header p,
.reset-header p {
  color: var(--auth-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* ================================================
   FORM ELEMENTS
   ================================================ */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--auth-text);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--auth-border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--auth-primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
  background: white;
  transform: translateY(-1px);
}

.form-group input::placeholder {
  color: #9CA3AF;
}

/* Password toggle */
.password-input {
  position: relative;
}

.password-input input {
  padding-right: 3rem;
}

.toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--auth-text-muted);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s ease;
  padding: 0.25rem;
}

.toggle-password:hover {
  color: var(--auth-primary);
}

/* Field validation states */
.form-group.error input {
  border-color: var(--auth-error);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group.success input {
  border-color: var(--auth-success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.field-error,
.field-success {
  font-size: 0.8rem;
  margin-top: 0.375rem;
  display: none;
}

.field-error {
  color: var(--auth-error);
}

.field-success {
  color: var(--auth-success);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--auth-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.35);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading spinner */
.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ================================================
   ALERTS
   ================================================ */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #065F46;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #DC2626;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #92400E;
}

.alert i {
  font-size: 1.1rem;
}

/* ================================================
   LINKS & BACK NAVIGATION
   ================================================ */
.back-link {
  text-align: center;
  margin-top: 2rem;
}

.back-link a {
  color: var(--auth-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.back-link a:hover {
  color: var(--auth-primary-dark);
  transform: translateX(-3px);
}

/* Auth footer links */
.auth-footer-link {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--auth-text-muted);
  font-size: 0.9rem;
}

.auth-footer-link a {
  color: var(--auth-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.auth-footer-link a:hover {
  color: var(--auth-primary-dark);
}

/* ================================================
   OTP INPUT (Verify Page)
   ================================================ */
.otp-input-container {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.otp-input {
  width: 50px;
  height: 56px;
  border: 2px solid var(--auth-border);
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--auth-text);
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.9);
}

.otp-input:focus {
  outline: none;
  border-color: var(--auth-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
  transform: translateY(-2px);
}

.otp-input:valid {
  border-color: var(--auth-success);
  background: rgba(16, 185, 129, 0.05);
}

/* ================================================
   VERIFICATION HEADER (OTP Page)
   ================================================ */
.verification-header {
  background: var(--auth-gradient);
  color: white;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 24px 24px 0 0;
  margin: -2.5rem -2.5rem 2rem -2.5rem;
  position: relative;
  overflow: hidden;
}

.verification-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.verification-header .header-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.verification-header .header-icon i {
  font-size: 2.5rem;
  color: white;
}

.verification-header .header-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
}

.verification-header .header-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
  position: relative;
}

.verification-content {
  padding: 0;
}

/* Email display box */
.email-display {
  background: rgba(0, 102, 255, 0.05);
  border: 2px solid rgba(0, 102, 255, 0.1);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.email-icon {
  background: var(--auth-gradient);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.email-text {
  color: var(--auth-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.email-address {
  color: var(--auth-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Resend section */
.resend-section {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--auth-border);
  margin-top: 1.5rem;
}

.resend-text {
  color: var(--auth-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.timer {
  color: var(--auth-primary);
  font-weight: 600;
}

.resend-button {
  background: transparent;
  color: var(--auth-primary);
  border: 2px solid var(--auth-primary);
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.resend-button:hover:not(:disabled) {
  background: var(--auth-primary);
  color: white;
  transform: translateY(-1px);
}

.resend-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ================================================
   PASSWORD REQUIREMENTS BOX
   ================================================ */
.password-requirements {
  background: rgba(0, 102, 255, 0.05);
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--auth-text-muted);
}

.password-requirements h4 {
  margin-bottom: 0.5rem;
  color: var(--auth-text);
  font-size: 0.9rem;
  font-weight: 600;
}

.password-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.password-requirements li {
  margin-bottom: 0.25rem;
  padding-left: 1.5rem;
  position: relative;
}

.password-requirements li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--auth-primary);
  font-weight: bold;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .auth-container,
  .login-container,
  .signup-container,
  .forgot-container,
  .reset-container,
  .verification-container {
    max-width: 500px;
    padding: 3rem;
  }

  .auth-header h1,
  .login-header h1,
  .signup-header h1,
  .forgot-header h1,
  .reset-header h1 {
    font-size: 2.25rem;
  }

  .otp-input {
    width: 56px;
    height: 64px;
    font-size: 1.75rem;
  }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .auth-container,
  .login-container,
  .signup-container,
  .forgot-container,
  .reset-container,
  .verification-container {
    max-width: 480px;
    padding: 2.5rem;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .auth-container,
  .login-container,
  .signup-container,
  .forgot-container,
  .reset-container,
  .verification-container {
    max-width: 450px;
    padding: 2rem;
    margin: 1rem;
    margin-top: 80px;
  }

  .auth-header h1,
  .login-header h1,
  .signup-header h1,
  .forgot-header h1,
  .reset-header h1 {
    font-size: 1.875rem;
  }

  .form-group input {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .otp-input {
    width: 48px;
    height: 52px;
    font-size: 1.375rem;
  }

  .otp-input-container {
    gap: 0.5rem;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  body {
    padding: 15px;
    padding-top: 80px;
  }

  .auth-container,
  .login-container,
  .signup-container,
  .forgot-container,
  .reset-container,
  .verification-container {
    max-width: 100%;
    padding: 1.5rem;
    margin: 0;
    border-radius: 20px;
    margin-top: 0;
  }

  .auth-header h1,
  .login-header h1,
  .signup-header h1,
  .forgot-header h1,
  .reset-header h1 {
    font-size: 1.625rem;
  }

  .auth-header p,
  .login-header p,
  .signup-header p,
  .forgot-header p,
  .reset-header p {
    font-size: 0.9rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input {
    padding: 0.7rem 0.875rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .btn-primary {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .otp-input {
    width: 44px;
    height: 48px;
    font-size: 1.25rem;
  }

  .otp-input-container {
    gap: 0.5rem;
  }

  .auth-nav-container {
    padding: 0 1rem;
  }

  .auth-nav-link {
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
  }

  .verification-header {
    padding: 2rem 1.5rem;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
  body {
    padding: 10px;
    padding-top: 70px;
  }

  .auth-container,
  .login-container,
  .signup-container,
  .forgot-container,
  .reset-container,
  .verification-container {
    max-width: 100%;
    padding: 1.25rem;
    margin: 0;
    border-radius: 16px;
  }

  .auth-header h1,
  .login-header h1,
  .signup-header h1,
  .forgot-header h1,
  .reset-header h1 {
    font-size: 1.5rem;
  }

  .auth-header p,
  .login-header p,
  .signup-header p,
  .forgot-header p,
  .reset-header p {
    font-size: 0.85rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.375rem;
  }

  .form-group input {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 10px;
  }

  .btn-primary {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .alert {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .otp-input {
    width: 40px;
    height: 44px;
    font-size: 1.125rem;
    border-radius: 10px;
  }

  .otp-input-container {
    gap: 0.375rem;
  }

  .auth-nav {
    padding: 0.5rem 0;
  }

  .auth-nav-logo img {
    height: 28px;
  }

  .auth-nav-links {
    gap: 0.5rem;
  }

  .auth-nav-link {
    font-size: 0.8rem;
    padding: 0.375rem 0.625rem;
  }

  .verification-header {
    padding: 1.5rem 1rem;
    margin: -1.25rem -1.25rem 1.25rem -1.25rem;
    border-radius: 16px 16px 0 0;
  }

  .verification-header .header-icon {
    width: 64px;
    height: 64px;
  }

  .verification-header .header-icon i {
    font-size: 2rem;
  }

  .verification-header .header-title {
    font-size: 1.5rem;
  }

  .verification-header .header-subtitle {
    font-size: 0.875rem;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .auth-container,
  .login-container,
  .signup-container,
  .forgot-container,
  .reset-container,
  .verification-container {
    padding: 1rem;
  }

  .auth-header h1,
  .login-header h1,
  .signup-header h1,
  .forgot-header h1,
  .reset-header h1 {
    font-size: 1.375rem;
  }

  .form-group input {
    padding: 0.5rem 0.625rem;
    font-size: 0.8rem;
  }

  .btn-primary {
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
  }

  .otp-input {
    width: 36px;
    height: 40px;
    font-size: 1rem;
  }

  .auth-nav-logo img {
    height: 24px;
  }

  .auth-nav-link {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }

  .verification-header {
    padding: 1.25rem 0.75rem;
    margin: -1rem -1rem 1rem -1rem;
  }

  .verification-header .header-icon {
    width: 56px;
    height: 56px;
  }

  .verification-header .header-title {
    font-size: 1.25rem;
  }
}

/* ================================================
   ACCESSIBILITY & REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .auth-container,
  .login-container,
  .signup-container,
  .forgot-container,
  .reset-container,
  .verification-container {
    border: 2px solid #000;
  }

  .form-group input {
    border-width: 2px;
  }

  .btn-primary {
    border: 2px solid #000;
  }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--auth-primary);
  outline-offset: 2px;
}

