/* ── AUTH PAGES CSS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #0a1628;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,200,83,0.08) 0%, transparent 70%);
}

.auth-wrap {
  width: 100%;
  max-width: 440px;
}

.auth-card {
  background: #111e35;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.auth-logo {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #f0f4ff;
  text-decoration: none;
  margin-bottom: 28px;
}
.auth-logo span { color: #00c853; }

h1 {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #f0f4ff;
  margin-bottom: 8px;
}

.auth-sub {
  color: #8a9bbf;
  font-size: .9rem;
  margin-bottom: 28px;
}

.alert {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .88rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.alert-error   { background: rgba(244,67,54,.12);  border: 1px solid rgba(244,67,54,.3);  color: #ef9a9a; }
.alert-success { background: rgba(0,200,83,.12);   border: 1px solid rgba(0,200,83,.3);   color: #a5d6a7; }
.alert a { color: #00c853; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #8a9bbf;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input {
  width: 100%;
  background: #0d1f3c;
  border: 1px solid rgba(255,255,255,0.1);
  color: #f0f4ff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus { border-color: #00c853; }
.form-group input::placeholder { color: #4a5a72; }

.btn-submit {
  width: 100%;
  background: #00c853;
  color: #0a1628;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 14px;
  cursor: pointer;
  transition: all .2s;
  margin-top: 8px;
}
.btn-submit:hover { background: #00e676; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,200,83,.35); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.auth-footer {
  text-align: center;
  color: #8a9bbf;
  font-size: .88rem;
  margin-top: 24px;
}
.auth-footer a { color: #00c853; text-decoration: none; font-weight: 600; }
