/* ==============================
   AUTH PAGES (LOGIN / RESET)
   ============================== */

.auth-body {
  min-height: 100vh;
  background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #000);
  background-size: 400% 400%;
  animation: authGradient 12s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes authGradient {
  0% {background-position: 0% 50%}
  50% {background-position: 100% 50%}
  100% {background-position: 0% 50%}
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 40px;
}

.auth-title {
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
}

.auth-subtitle {
  text-align: center;
  font-size: 14px;
  color: #cce7ff;
  margin-bottom: 30px;
}

.auth-input {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  font-size: 15px;
}

.auth-button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.auth-links {
  margin-top: 20px;
  text-align: center;
}

.auth-links a {
  font-size: 14px;
}

.auth-error {
  background: rgba(255,0,0,0.15);
  border: 1px solid rgba(255,0,0,0.4);
  color: #ffb3b3;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: center;
}
