/* CSS VARIABLES */
:root {
  --primary-orange: #FF8C00;
  --primary-green: #00BFA6;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --text-light: #ffffff;
  --text-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f6fa;
  overflow-x: hidden;
}

/* ================= HEADER & NAVBAR ================= */
.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.logo img {
  margin-bottom: 12px;
  height: 45px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* ================= LEFT SIDE NAVIGATION ================= */
.nav-left {
  display: flex;
  align-items: center;
  gap: 40px; /* Space between the logo and the start of the menu */
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 25px; 
  
}

.main-menu a {
  text-decoration: none;
  color: var(--text-light); /* White text to match the video background */
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.main-menu a:hover {
  color: var(--primary-orange);
}

/* Optional: Cool underline animation on hover for the new links */
.main-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-orange);
  transition: width 0.3s ease;
}

.main-menu a:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem; 
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-links a i {
  font-size: 1.1rem;
}

.btn-register {
  background: var(--primary-orange);
  padding: 10px 24px;
  border-radius: 50px;
  color: white !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

.menu-dots {
  font-size: 1.4rem !important;
  padding-left: 5px;
}

/* ================= HERO SECTION ================= */
/* ================= HERO SECTION (FIXED FOR SCROLLING & NAVBAR CLEARANCE) ================= */
.hero {
  position: relative;
  min-height: 100vh; /* Allows the section to grow taller than the screen if needed */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Stops flexbox from pushing content up into the navbar */
  align-items: center;
  padding-top: 160px; /* Large solid clearance for the fixed navbar */
  padding-bottom: 100px; /* Clearance at the bottom so it breathes */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  min-height: 100%; /* Changed from 100vh so it covers the background even if the page stretches */
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 20px;
  margin-top: 4vh; /* Visually pushes the text down into the center gracefully */
  animation: fadeIn 1s ease-out forwards;
}

/* ================= NEW SCROLLABLE CONTENT SECTION ================= */
.popular-tests {
  padding: 100px 5%;
  background: #f5f6fa;
  text-align: center;
  min-height: 70vh; /* Gives you plenty of room to scroll */
}

.popular-tests h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.popular-tests p {
  color: #666;
  font-size: 1.1rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.highlight {
  color: var(--primary-orange);
}

.hero p {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn-primary {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background: var(--text-light);
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background: var(--primary-orange);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}
/* ================= TRUSTED LABS LOGOS ================= */
.trusted-labs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px; /* Spacing between logos and search bar */
}

.trusted-labs p {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7); /* Subtle white text */
}

.lab-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.lab-logos img {
    width: 130px;
  height: 60px; /* Adjust this based on your actual logo sizes */
  object-fit: contain;
  /* Makes logos look white/transparent initially so they don't clash with the background */
  filter: grayscale(10%) brightness(90%) opacity(0.9);
  transition: all 0.3s ease;
  cursor: pointer;
}



/* On hover, the logos reveal their original colors and pop out slightly */
.lab-logos img:hover {
  filter: grayscale(0%) brightness(100%) opacity(1);
  transform: scale(1.05);
}

.lab-logos img.Magnify1 {
  
  height: 130px;
}

.lab-logos img.Magnify2 {
  
  height: 80px;
}

/* ================= GLASS SEARCH BAR ================= */
.search-container {
  margin-top: 4rem;
  width: 100%;
  max-width: 1050px; /* Slightly wider to fit all elements */
  padding: 0 20px;
  z-index: 5;
  animation: fadeIn 1.2s ease-out forwards;
}

.glass-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.input-group.main-search {
  flex: 2;
}

.input-group {
  flex: 1;
}

/* STYLING FOR BOTH INPUT AND SELECT (DRAG MENU) */
.glass-search input,
.glass-search select {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.glass-search input:focus,
.glass-search select:focus {
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.3);
}

/* Custom Dropdown Arrow for Select */
.glass-search select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px; /* Space for the arrow */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

/* GPS Button */
.btn-gps {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gps i {
  color: var(--primary-orange);
  font-size: 1.1rem;
}

.btn-gps:hover {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Submit Button */
.btn-search {
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  background: var(--primary-green);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-search:hover {
  background: #00a892;
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 191, 166, 0.4);
}

/* ================= ANIMATIONS & RESPONSIVE ================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .glass-search {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
  }
  
  .input-group, 
  .btn-gps, 
  .btn-search {
    width: 100%;
  }

  .btn-gps, .btn-search {
    justify-content: center;
  }
}



    /* ════════════════════════════════════════════
       GLOBAL NAV STRUCTURE
    ════════════════════════════════════════════ */

    .mobile-toggle { display: none !important; }

    .glass-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.75rem;
      padding: 0.75rem 2rem;
      box-sizing: border-box;
    }

    /* ── Left side: logo + page links ── */
    .nav-left {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .logo img {
      max-height: 48px;
      width: auto;
      display: block;
    }

    /* Page links — VISIBLE on desktop, hidden on tablet/mobile */
    .main-menu {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .main-menu a {
      font-size: 0.9rem;
      text-decoration: none;
      white-space: nowrap;
    }

    /* ── Right side: auth links ── */
    .nav-links {
      display: flex !important;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    /* ════════════════════════════════════════════
       THREE-DOTS DROPDOWN
       Wrapper is hidden on desktop, shown on ≤ 900px
    ════════════════════════════════════════════ */

    .dots-menu {
      display: none;          /* desktop: invisible */
      position: relative;
    }

    /* The dots button itself */
    .dots-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.4rem 0.55rem;
      border-radius: 8px;
      color: inherit;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .dots-btn:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    /* The dropdown panel */
    .dots-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      flex-direction: column;
      gap: 0.1rem;
      min-width: 170px;
      padding: 0.5rem;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
      z-index: 9999;
    }

    /* Tiny triangle pointer */
    .dots-dropdown::before {
      content: '';
      position: absolute;
      top: -7px;
      right: 12px;
      width: 13px;
      height: 13px;
      background: rgba(255, 255, 255, 0.22);
      border-left: 1px solid rgba(255, 255, 255, 0.3);
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      transform: rotate(45deg);
      backdrop-filter: blur(20px);
    }

    .dots-dropdown.open { display: flex; }

    .dots-dropdown a {
      display: block;
      padding: 0.6rem 1rem;
      font-size: 0.88rem;
      text-decoration: none;
      border-radius: 9px;
      white-space: nowrap;
      color: inherit;
      transition: background 0.18s;
    }

    .dots-dropdown a:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    @media (max-width: 900px) {

      .glass-nav  { padding: 0.65rem 1.25rem; gap: 0.5rem; }
      .nav-left   { gap: 1rem; }

      /* Hide inline page links — they live in the dropdown now */
      .main-menu  { display: none !important; }

      /* Show dots button */
      .dots-menu  { display: block; }

      .nav-links  { gap: 0.85rem; }
      .nav-links a{ font-size: 0.82rem !important; padding: 0.4rem 0.65rem !important; }
      .btn-register{ font-size: 0.78rem !important; padding: 0.4rem 0.85rem !important; }
    }

    @media (max-width: 768px) {

      .glass-nav {
        flex-direction: column;
        align-items: center;
        padding: 0.75rem 1rem;
        gap: 0.55rem;
      }

      .nav-left {
        width: 100%;
        justify-content: center;
      }

      .logo {
        display: flex;
        justify-content: center;
      }

      .nav-links {
        width: 100%;
        justify-content: center;
        gap: 0.45rem;
      }

      .nav-links a {
        font-size: 0.78rem !important;
        padding: 0.38rem 0.65rem !important;
        white-space: nowrap;
      }

      .btn-register {
        font-size: 0.72rem !important;
        padding: 0.38rem 0.75rem !important;
      }

      
    }

    @media (max-width: 480px) {

      .glass-nav { padding: 0.6rem 0.75rem; gap: 0.45rem; }

      .nav-links  { gap: 0.3rem; }
      .nav-links a{
        font-size: 0.7rem !important;
        padding: 0.32rem 0.5rem !important;
      }
      .nav-links a i { margin-right: 3px; }

      .btn-register {
        font-size: 0.65rem !important;
        padding: 0.32rem 0.6rem !important;
        letter-spacing: 0 !important;
      }

      .dots-dropdown a { font-size: 0.82rem; }
    }

    /* ════════════════════════════════════════════
       EXTRA-SMALL  (≤ 360px)
    ════════════════════════════════════════════ */
    @media (max-width: 360px) {

      .nav-links a {
        font-size: 0.62rem !important;
        padding: 0.28rem 0.42rem !important;
      }

      .btn-register {
        font-size: 0.6rem !important;
        padding: 0.28rem 0.5rem !important;
      }
    }

    /* ════════════════════════════════════════════
   FOOTER SECTION
════════════════════════════════════════════ */
.site-footer {
  background-color: #1a1b26; /* Deep, professional dark blue/gray */
  color: #ffffff;
  padding: 60px 5% 20px;
  margin-top: 50px;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Brand Section */
.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo-img {
  height: 45px;
  margin-bottom: 15px;
  /* Optional: If your logo is dark text, this turns it solid white so it shows up on the dark footer! */
  filter: brightness(0) invert(1); 
}

.footer-brand p {
  color: #a9b2c3;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Links Sections */
.footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 150px;
}

.footer-links h4, .footer-legal h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-orange); /* Uses your main orange color */
}

.footer-links a, .footer-legal a {
  color: #a9b2c3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effects for links */
.footer-links a:hover, .footer-legal a:hover {
  color: var(--primary-green); /* Uses your main green color */
  transform: translateX(5px); /* Neat little slide animation */
}

/* Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  color: #7a8294;
  font-size: 0.85rem;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
}

/* ════════════════════════════════════════════
   LEGAL PAGES (PRIVACY POLICY, TERMS, ETC.)
════════════════════════════════════════════ */

/* 1. Fix the Navbar Visibility */
/* This gives the navbar a dark, solid background ONLY on legal pages so the white text is visible */
.glass-nav.legal-nav-bg {
  background: rgba(26, 27, 38, 0.98) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

/* 2. Add the Colorful Gradient Background to the Page */
.legal-page {
  padding-top: 140px; /* Pushes content down so it's not hidden behind the navbar */
  padding-bottom: 80px;
  
  /* A beautiful, modern gradient using your brand Orange and Green, kept soft so it isn't blinding */
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(0, 191, 166, 0.15) 100%);
  min-height: 80vh;
}

/* 3. Push the Text away from the margins */
.legal-document {
  max-width: 1000px; /* Makes the white box slightly wider */
  margin: 0 auto;
  background: #ffffff;
  
  /* THIS fixes the text margin: 60px top/bottom, 80px left/right */
  padding: 60px 80px; 
  
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Makes the white box pop off the gradient */
  color: #444;
  line-height: 1.8;
}

/* 4. Fix Mobile Margins for Phones */
@media (max-width: 768px) {
  .legal-document {
    /* Slightly smaller padding on phones so it still fits on the screen */
    padding: 40px 30px; 
    margin: 0 15px; /* Keeps the white box away from the edges of the phone screen */
  }
}

/* ════════════════════════════════════════════
   AUTHENTICATION PAGE (LOGIN / SIGN UP)
════════════════════════════════════════════ */

/* Reuses the gradient background from the legal pages */
.auth-page {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(0, 191, 166, 0.15) 100%);
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The Glassmorphism Card */
.auth-container {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 40px;
  margin: 0 20px;
}

/* Tabs at the top (Login | Sign Up) */
.auth-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* The active tab gets the brand orange color and underline */
.auth-tab.active {
  color: var(--primary-orange);
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-orange);
}

/* Forms (Hidden by default, shown when active) */
.auth-form {
  display: none;
  animation: fadeInForm 0.4s ease forwards;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.auth-form p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

/* Input Fields */
.auth-form .input-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.auth-form .input-group i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 1.1rem;
}

.auth-form input {
  width: 100%;
  padding: 14px 14px 14px 45px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fdfdfd;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.15);
}

/* Remember Me & Forgot Password */
.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.85rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
}

.forgot-pass {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
}

.forgot-pass:hover {
  text-decoration: underline;
}

/* Main Action Button */
.btn-auth {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: var(--primary-green);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.btn-auth:hover {
  background: #00a892;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 166, 0.4);
}

/* Social Logins */
.social-login p {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

/* Creates the little lines next to "Or continue with" */
.social-login p::before,
.social-login p::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25%;
  height: 1px;
  background: #ddd;
}

.social-login p::before { left: 0; }
.social-login p::after { right: 0; }

.social-btns {
  display: flex;
  gap: 15px;
}

.btn-social {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: white;
  color: #444;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-social:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

/* Sign Up tiny text */
.terms-text {
  text-align: center;
  font-size: 0.8rem !important;
  margin-top: 20px;
  margin-bottom: 0 !important;
}

.terms-text a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .auth-container {
    padding: 30px 20px;
  }
  .auth-tabs { margin-bottom: 20px; }
  .auth-form h2 { font-size: 1.5rem; }
}

@keyframes fadeInForm {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Fix for mobile auth options overlap */
@media (max-width: 480px) {
  .auth-options {
    flex-direction: column;
    align-items: flex-start; /* Aligns them neatly to the left */
    gap: 15px;
  }
}