/* air-auth-ui landing variant tokens. Do not restyle the bar, glow, or card radius. */
:root {
  --nimbus-slate: #00101E;
  --blueberry-breeze: #092C42;
  --air-blue: #003569;
  --air-blue-dark: #00284f;
  --air-sky: #4A9FD4;
  --ink-100: #e8edf5;
  --ink-300: #aab6c6;
  --ink-500: #7c8a9e;
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--nimbus-slate);
  color: var(--ink-100);
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 0 24px; position: relative; overflow: hidden;
}
.slash { position: absolute; bottom: 0; right: 0; width: 22rem; height: auto; pointer-events: none; opacity: .9; }
.card {
  position: relative; z-index: 1; width: 100%; max-width: 28rem;
  background: var(--blueberry-breeze);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem; overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.65);
}
.accent { height: 4px; width: 100%; background: var(--air-sky); }
.body { padding: 40px 40px 36px; }
.logo { height: 44px; width: auto; display: block; filter: brightness(0) invert(1); }
.eyebrow-row { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.eyebrow { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--air-sky); }
.eyebrow-rule { height: 1px; flex: 1; background: rgba(255,255,255,.12); }
.title { margin: 16px 0 0; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.desc { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--ink-300); }
.btn {
  display: block; margin-top: 28px; width: 100%; border: 0; border-radius: 8px; cursor: pointer;
  background: var(--air-blue); color: #fff; padding: 12px 24px; font-size: 14px; font-weight: 600;
  text-align: center; text-decoration: none; box-shadow: 0 1px 2px rgba(0,0,0,.2); transition: background-color .15s;
}
.btn:hover { background: var(--air-blue-dark); }
.btn:focus-visible { outline: 2px solid var(--air-sky); outline-offset: 2px; }
.footer { margin-top: 16px; text-align: center; font-size: 12px; color: var(--ink-500); }
