/* ==================== BACKEND AUTH PAGES ==================== */

body {
  background: #0b0f1a;
  color: #e9ecff;
  font-family: 'Segoe UI', Roboto, sans-serif;
  margin: 0;
}

.auth-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-section {
  min-height: calc(100vh - 120px);
}

/* Card container */
.auth-container {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

/* Title */
.auth-container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
}

/* Inputs */
.auth-container input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Error text */
.auth-container span {
  font-size: 0.85rem;
  color: #ff6b6b;
}

/* Login button */
.auth-container input[type="submit"] {
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  color: #0b0f1a;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.auth-container input[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Divider */
.divider {
  text-align: center;
  margin: 20px 0;
  color: rgba(255,255,255,0.5);
}

/* Social buttons */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

/* Individual styles */
.google { background: #fff; color: #000; }
.facebook { background: #1877f2; color: #fff; }
.apple { background: #000; color: #fff; }

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Signup link */
.signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.signup-link a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.signup-link a:hover {
  text-decoration: underline;
}



/* forgot passward section START */


.forgot-password {
  text-align: right;
  margin-top: 10px;
  font-size: 0.9rem;
}

.forgot-password a {
  color: #60a5fa;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.resend-text {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.resend-text a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.resend-text a:hover {
  text-decoration: underline;
}

/* forgot passward section END */
