/* .auth-body {
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Inter', sans-serif;
}

.auth-container {
  width: 100%;
  max-width: 420px;
  padding: 1.5rem;
}

.auth-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
}

.auth-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  color: #1e293b;
}

.auth-subtext {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.auth-form input {
  width: 93%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  font-size: 1rem;
  outline: none;
}

.auth-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.auth-form button:hover {
  background-color: #1e40af;
}

.auth-link {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #475569;
}

.auth-link a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.fade-in {
  animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.google-login-btn {
  background-color: #fff;
  color: #444;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.google-login-btn:hover {
  background-color: #f9f9f9;
  transform: translateY(-1px);
}

.logo-link{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.logo-link:hover{
  opacity: 0.85;
} */

/* Auth Page Styles */
.auth-body {
  /* background: linear-gradient(to right, #2563eb, #1e3a8a); blue gradient */
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Inter', sans-serif;
}

.auth-container {
  width: 100%;
  max-width: 420px;
  padding: 1.5rem;
}

.auth-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
}

.auth-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  color: #1e293b;
}

.auth-subtext {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* .auth-form input {
  width: 93%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  font-size: 1rem;
  outline: none;
} */

.auth-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box; /* ensures padding doesn’t break layout */
}


.auth-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.auth-form button:hover {
  background-color: #1e40af;
}

.auth-link {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #475569;
}

.auth-link a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.fade-in {
  animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.google-login-btn {
  background-color: #fff;
  color: #444;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.google-login-btn:hover {
  background-color: #f9f9f9;
  transform: translateY(-1px);
}

.logo-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.logo-link:hover {
  opacity: 0.85;
}

/* ===================
   🌐 Responsive Layout
   =================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .auth-card {
    padding: 1.75rem;
    max-width: 380px;
  }

  .auth-card h2 {
    font-size: 1.5rem;
  }

  .auth-form input,
  .auth-form button {
    font-size: 0.95rem;
  }
}

/* Mobiles (≤768px) */
@media (max-width: 768px) {
  .auth-body {
    height: auto;
    padding: 2rem 1rem;
    flex-direction: column;
  }

  .auth-card {
    padding: 1.5rem;
    max-width: 100%;
    margin: auto;
  }

  .auth-card h2 {
    font-size: 1.25rem;
  }

  .auth-subtext {
    font-size: 0.85rem;
  }

  .auth-form input {
    width: 100%;
  }
}

/* Small Phones (≤480px) */
@media (max-width: 480px) {
  .auth-body {
    padding: 1rem;
  }

  .auth-card {
    padding: 1rem;
    border-radius: 0.75rem;
  }

  .auth-card h2 {
    font-size: 1rem;
  }

  .auth-subtext{
    font-size: 0.8rem;
  }

  .auth-form input,
  .auth-form button {
    font-size: 0.85rem;
    padding: 0.65rem;
  }

  .auth-link {
    font-size: 0.8rem;
  }

  .google-login-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}
