/* ═══════════════════════════════════════════
   EnglishWithCliff — Auth Pages Styles
   Login, Register, Forgot/Reset Password
   ═══════════════════════════════════════════ */

:root {
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --orange: #E8652B;
  --orange-h: #D4561F;
  --navy: #1B2A4A;
  --cream: #FAF8F5;
  --text-muted: #64748b;
  --border: #E8E4DE;
  --radius: 12px;
  --green: #10B981;
  --red: #EF4444;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: linear-gradient(155deg, #0C0A08 0%, #18120C 30%, #1A1410 60%, #14100A 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.auth-container {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}
.auth-logo:hover { text-decoration: none; }
.auth-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-logo-icon svg { width: 18px; height: 18px; fill: white; }

.auth-card {
  width: 100%;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px 32px;
}

.auth-title {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin-bottom: 28px;
}

.auth-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.auth-alert--error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.2);
  color: #FCA5A5;
}
.auth-alert--success {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.2);
  color: #6EE7B7;
}

.auth-field {
  margin-bottom: 18px;
}
.auth-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.35);
  margin-bottom: 6px;
}
.auth-field input,
.auth-field select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.auth-field input:focus,
.auth-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,.08);
}
.auth-field input::placeholder { color: rgba(255,255,255,.2); }
.auth-field select option { background: var(--navy); color: #fff; }

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 8px;
}
.auth-btn:hover { background: var(--orange-h); transform: translateY(-1px); }
.auth-btn:active { transform: translateY(0); }

.auth-links {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.auth-links a { color: var(--orange); font-weight: 600; }

.auth-back {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.auth-back:hover { color: rgba(255,255,255,.6); }

@media (max-width: 480px) {
  .auth-card { padding: 28px 20px; }
  .auth-row { grid-template-columns: 1fr; }
}
