:root {
  color-scheme: light;
  --brand-blue: #030a26;
  --brand-yellow: #dbb84a;
  --text: #1b2437;
  --muted: #687386;
  --line: #dce2ec;
  --page: #f3f5f9;
  --soft-blue: #2f5597;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.login-panel {
  width: min(390px, 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(3, 10, 38, 0.12);
}

.login-logo-box {
  display: grid;
  width: 320px;
  min-height: 116px;
  margin: 0 auto 26px;
  place-items: center;
}

.login-logo-box img {
  display: block;
  width: 308px;
  height: auto;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--brand-yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 26px;
  font-weight: 800;
}

.login-copy {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

form {
  display: grid;
  gap: 14px;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #f7f9fd;
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(219, 184, 74, 0.16);
}

button {
  height: 42px;
  border: 0;
  border-radius: 999px;
  margin-top: 4px;
  background: var(--brand-yellow);
  color: var(--brand-blue);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

button:hover {
  filter: brightness(1.04);
}

.login-message {
  min-height: 18px;
  margin: 14px 0 0;
  color: #d93645;
  font-size: 12px;
  font-weight: 800;
}

.login-message.ok {
  color: #15805e;
}
