/* MAW Hub — Auth pages */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #0f172a;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  margin: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(29,78,216,.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(124,58,237,.2) 0%, transparent 50%);
}

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

.auth-logo {
  text-align: center; margin-bottom: 28px;
}
.auth-logo img {
  height: 52px; border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.auth-logo h1 {
  margin: 10px 0 0;
  font-size: 20px; font-weight: 700; color: #f1f5f9;
}
.auth-logo p { font-size: 13px; color: #94a3b8; margin: 4px 0 0; }

.auth-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.auth-card h2 { font-size: 18px; color: #f1f5f9; margin: 0 0 22px; font-weight: 700; }

.form-label { font-size: 13px; font-weight: 600; color: #94a3b8; margin-bottom: 6px; display: block; }
.form-control {
  width: 100%; padding: 10px 14px;
  background: #0f172a; border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; color: #f1f5f9; font-size: 14px;
  font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
.form-control:focus {
  outline: none; border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.2);
}
.form-control::placeholder { color: #475569; }

.input-group { position: relative; }
.input-group .form-control { padding-left: 38px; }
.input-group .input-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: #475569; font-size: 14px; pointer-events: none;
}
.input-group .input-suffix {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: #475569; padding: 2px;
}
.input-group .input-suffix:hover { color: #94a3b8; }

.form-group { margin-bottom: 18px; }

.btn-auth {
  width: 100%; padding: 11px;
  background: #1d4ed8; color: #fff;
  border: none; border-radius: 8px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background .15s;
  margin-top: 6px;
}
.btn-auth:hover { background: #1e3a8a; }

.auth-links {
  margin-top: 18px; text-align: center; font-size: 13px;
}
.auth-links a { color: #60a5fa; }
.auth-links a:hover { color: #93c5fd; }

.alert {
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.alert-danger { background: rgba(239,68,68,.12); color: #fca5a5; border: 1px solid rgba(239,68,68,.3); }
.alert-success { background: rgba(34,197,94,.12); color: #86efac; border: 1px solid rgba(34,197,94,.3); }
.alert-info { background: rgba(59,130,246,.12); color: #93c5fd; border: 1px solid rgba(59,130,246,.3); }

.otp-box {
  text-align: center;
  background: rgba(29,78,216,.12);
  border: 1px solid rgba(29,78,216,.3);
  border-radius: 10px;
  padding: 18px; margin-bottom: 18px;
}
.otp-box p { color: #94a3b8; margin: 0 0 6px; font-size: 13px; }
.otp-input {
  font-size: 28px; letter-spacing: 12px; font-weight: 700;
  text-align: center; color: #f1f5f9;
  background: #0f172a; border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 12px;
  width: 100%; max-width: 240px;
}

.auth-footer {
  text-align: center; margin-top: 22px;
  font-size: 12px; color: #475569;
}
