:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #eef2f7;
  color: #172033;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-panel {
  width: min(100%, 380px);
  border: 1px solid #d8e0eb;
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

.login-brand {
  display: block;
  margin-bottom: 18px;
  color: #2563eb;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.login-panel h1 {
  margin: 0 0 8px;
  font-size: 1.65rem;
  letter-spacing: 0;
}

.login-panel p {
  margin: 0 0 22px;
  color: #64748b;
}

.google-login {
  min-height: 44px;
  display: flex;
  justify-content: center;
}

.login-error {
  display: none;
  margin: 16px 0 0 !important;
  color: #b91c1c !important;
  font-size: .85rem;
  text-align: center;
}

.login-error.is-visible {
  display: block;
}
