/* login.css — Phase 45 sign-in page.
   Centered card on a neutral background; Reader wordmark above the
   GIS button. Self-contained — does NOT import the briefing /
   admin stylesheets, since the login page is the one surface where
   neither the sidebar nor the admin chrome should leak through. */

@font-face {
  font-family: 'Alkatra';
  src: url('../fonts/Alkatra-Variable.woff2') format('woff2-variations'),
       url('../fonts/Alkatra-Variable.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Variable.woff2') format('woff2-variations'),
       url('../fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: linear-gradient(180deg, #f5f6fa 0%, #eef0f7 100%);
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1d26;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  -webkit-font-smoothing: antialiased;
}

.login-shell {
  background: #fff;
  border: 1px solid #d9dce6;
  border-radius: 14px;
  padding: 44px 48px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 24px rgba(15, 17, 23, .06);
}

.login-brand {
  font-family: 'Alkatra', cursive;
  font-size: 56px;
  font-weight: 600;
  color: #0f1117;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0 0 32px;
}

.login-mount {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 14px;
}

.login-hint {
  font-size: 12px;
  color: #5a6172;
  margin: 0;
}

.login-error {
  background: #fff4f4;
  border: 1px solid #f3d6d6;
  color: #b3261e;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  width: 100%;
  text-align: left;
}

.login-disabled {
  background: #fff7e0;
  border: 1px solid #f4c87a;
  color: #7a4d00;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  text-align: left;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .login-shell { padding: 32px 24px 28px; }
  .login-brand { font-size: 44px; margin-bottom: 24px; }
}
