@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/ibm-plex-sans-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/space-grotesk-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --void: #071110;
  --white: #e7f2ef;
  --muted: #9bb6b0;
  --cyan: #69d5c1;
  --silver: #b9ceca;
  font-family: "IBM Plex Sans", "Helvetica Neue", ui-sans-serif, sans-serif;
  font-size: 16px;
  background: var(--void);
  color: var(--white);
  scrollbar-color: var(--muted) var(--void);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.login {
  min-height: 100dvh;
  max-width: 420px;
  margin: auto;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 24px;
}
h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
button {
  font: inherit;
  font-weight: 600;
  line-height: 1.3;
  min-height: 44px;
  width: 100%;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--cyan);
  color: var(--void);
  cursor: pointer;
}
button:hover:not(:disabled) {
  background: var(--white);
}
button:active:not(:disabled) {
  background: var(--silver);
}
button:disabled {
  cursor: wait;
  opacity: 0.48;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
::selection {
  background: var(--cyan);
  color: var(--void);
}
p,
noscript {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}
#status:empty {
  display: none;
}
.legal {
  margin-top: 8px;
  border-top: 1px solid color-mix(in srgb, var(--silver) 18%, transparent);
  padding-top: 24px;
}
@media (max-width: 600px) {
  .login {
    padding: 40px 24px;
  }
}
