/* ---------- AUTH (Login) ---------- */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 80% 20%, rgba(123,92,255,0.15), rgba(15,15,18,1) 70%);
  padding: 60px 20px;
}

.auth-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  animation: fadeInUp 0.6s ease forwards;
}

.auth-card h1 {
  text-align: center;
  font-size: 28px;
  color: #eaeaff;
  margin-bottom: 10px;
}

.auth-subtitle {
  text-align: center;
  color: #b8b8cc;
  margin-bottom: 30px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  color: #ccc;
}

.form-group input {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
  transition: all 0.25s ease;
}

.form-group input:focus {
  border-color: #9b83ff;
  box-shadow: 0 0 10px rgba(123,92,255,0.3);
}

.form-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aaa;
  font-size: 14px;
}

.form-remember a {
  color: #9b83ff;
  text-decoration: none;
  transition: color 0.25s;
}

.form-remember a:hover {
  color: #fff;
}

.auth-submit {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 12px;
}

.auth-switch {
  text-align: center;
  margin-top: 16px;
  color: #aaa;
  font-size: 14px;
}

.auth-switch a {
  color: #9b83ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s;
}

.auth-switch a:hover {
  color: #fff;
}
