*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

body.app-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.num {
  text-align: right;
  white-space: nowrap;
}

.muted {
  color: var(--muted);
}

.center {
  justify-content: center;
  text-align: center;
}

.section-title {
  margin: 12px 0 8px;
  color: #475467;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.login-body {
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, #edf3f7 0, #f8fafc 62%);
}

.login-shell {
  width: min(420px, 100%);
}

.login-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.login-panel h1 {
  margin: 16px 0 4px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0;
}

.login-panel p {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 750;
}
