/* Auth form section (Sign In / Sign Up) */
.auth-page {
  background: linear-gradient(180deg, #eef3f9 0%, #f8f9fa 60%);
}

.auth-page.auth-signup {
  background: linear-gradient(180deg, #fff 0%, #eef3f9 60%, #f8f9fa 100%);
}

.auth-page main {
  max-width: 480px;
  margin: 0 auto;
  padding: 56px 22px 80px;
  display: block;
}

.auth-page .card h1 {
  font-family: 'Sora', system-ui, sans-serif;
  color: #003366;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: center;
}

.auth-page .card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 28px;
}

.auth-page label {
  display: block;
  margin-bottom: 8px;
  color: #001f4d;
  font-weight: 700;
  font-size: 0.95rem;
}

.auth-page .field {
  margin-bottom: 16px;
}

.auth-page input {
  width: 100%;
  border: 1px solid #d7dde5;
  border-radius: 12px;
  padding: 14px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.auth-page input:focus {
  border-color: #003366;
  box-shadow: 0 0 0 3px rgba(0, 59, 122, 0.08);
}

.auth-page .btn {
  width: 100%;
  border: none;
  background: #003366;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.auth-page .btn:hover {
  background: #002f61;
  transform: translateY(-1px);
}

.auth-page .muted {
  margin-top: 14px;
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.auth-page .muted a {
  color: #003366;
  font-weight: 800;
  text-decoration: none;
}

.auth-page .muted a:hover {
  color: #c8102e;
}
