/* ============================================================
   ZANTTO PAY — Auth Pages "Azul Banana"
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2F6BFF; --primary-dark: #1B3FAF;
  --secondary: #FFD84D;
  --text: #1A1A1A; --muted: #6B7280;
  --border: #E5E7EB; --surface: #FFFFFF; --bg: #F5F7FB;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  -webkit-font-smoothing: antialiased;
  background: #0D1B3E;
  background-image:
    radial-gradient(ellipse 700px 500px at 15% 20%, rgba(47,107,255,.2) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 85% 80%, rgba(255,216,77,.1) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 60% 10%, rgba(0,209,209,.08) 0%, transparent 55%);
}

/* Dots pattern */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.auth-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 44px 40px;
  max-width: 420px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}

/* Yellow accent top bar */
.auth-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.auth-logo { text-align: center; margin-bottom: 28px; display: flex; flex-direction: column; align-items: center; }
.auth-logo .brand {
  font-family: Arial, sans-serif;
  font-size: 26px;
  display: inline-flex; align-items: center; gap: 6px;
}
.auth-logo .brand .bold  { font-weight: 700; color: var(--primary); }
.auth-logo .brand .light { font-weight: 400; color: var(--text); }
.auth-logo .brand .bolt  { color: var(--secondary); font-size: 22px; }
.auth-logo .sub { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.auth-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.auth-subtitle { color: var(--muted); font-size: 14px; margin-bottom: 26px; }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--text);
  transition: border-color .2s, box-shadow .2s; outline: none;
  background: var(--surface);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47,107,255,.12);
}
.input-icon-wrap { position: relative; }
.input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--muted); pointer-events: none; }
.input-icon-wrap .form-control { padding-left: 42px; }

.btn-auth {
  width: 100%; padding: 14px;
  background: var(--primary);
  color: #fff; border: none; border-radius: 10px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 16px rgba(47,107,255,.3);
  margin-top: 4px;
}
.btn-auth:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(47,107,255,.4); }

.auth-footer { text-align: center; margin-top: 22px; font-size: 14px; color: var(--muted); }
.auth-footer a { color: var(--primary); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

.forgot-link { font-size: 13px; color: var(--primary); font-weight: 600; float: right; margin-top: -2px; }

.divider { border: none; border-top: 1px solid var(--border); margin: 22px 0; }

.alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 18px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.alert-success { background: rgba(34,197,94,.08); color: #166534; border-left: 3px solid #22C55E; }
.alert-error   { background: rgba(239,68,68,.08); color: #991b1b; border-left: 3px solid #EF4444; }
.alert-info    { background: rgba(47,107,255,.08); color: var(--primary-dark); border-left: 3px solid var(--primary); }
