:root {
  color: #eceae3;
  background: #111311;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgb(135 157 119 / 13%), transparent 36rem),
    #111311;
}

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

.login-panel {
  width: min(440px, 100%);
  padding: 40px;
  border: 1px solid #3e433d;
  border-radius: 18px;
  background: rgb(27 30 27 / 92%);
  box-shadow: 0 24px 80px rgb(0 0 0 / 32%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #9fac96;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 8vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.description {
  margin: 18px 0 30px;
  color: #a8aca3;
  line-height: 1.65;
}

form,
label {
  display: grid;
}

form {
  gap: 18px;
}

label {
  gap: 8px;
  color: #bec3b9;
  font-size: 13px;
}

input {
  width: 100%;
  border: 1px solid #4a5148;
  border-radius: 10px;
  padding: 13px 14px;
  color: #f2f0e8;
  background: #151815;
  font: inherit;
  outline: none;
}

input:focus {
  border-color: #9aae8d;
  box-shadow: 0 0 0 3px rgb(154 174 141 / 16%);
}

button {
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  padding: 14px;
  color: #111311;
  background: #d7e6cc;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: #e4f0dc;
}

button:disabled {
  cursor: wait;
  opacity: .65;
}

.status {
  min-height: 20px;
  margin: -6px 0 0;
  color: #f1a8a0;
  font-size: 13px;
}

.notice {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid #363b35;
  color: #838a80;
  font-size: 12px;
  line-height: 1.6;
}

.account-link {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
}

.account-link a {
  color: #c9d9be;
  text-underline-offset: 3px;
}

.account-link a:hover {
  color: #edf5e7;
}

@media (max-width: 520px) {
  .login-panel {
    padding: 30px 24px;
  }
}
