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

* { box-sizing: border-box; }

body { margin: 0; }

.login-shell {
  display: grid;
  min-height: 100vh;
  padding: 28px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 10%, rgb(217 93 57 / 20%), transparent 34rem),
    #262823;
}

.login-card {
  width: min(430px, 100%);
  padding: clamp(34px, 7vw, 54px);
  border: 1px solid #dedbd1;
  border-radius: 24px;
  background: #fbf0d9;
  box-shadow: 0 28px 80px rgb(0 0 0 / 28%);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 14px;
  background: #d95d39;
  color: white;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 9px;
  color: #76756d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 8vw, 48px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}

.intro {
  margin: 16px 0 30px;
  color: #65645d;
  line-height: 1.55;
}

.login-error {
  margin: -12px 0 22px;
  padding: 11px 13px;
  border-radius: 9px;
  background: #f5d8cf;
  color: #7c2f1d;
  font-size: 13px;
}

form, label { display: grid; }
form { gap: 18px; }
label { gap: 7px; }

label span {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .03em;
}

input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #c9c5b9;
  border-radius: 10px;
  background: rgb(255 255 255 / 58%);
  color: #24241f;
  font: inherit;
}

input:focus-visible, button:focus-visible {
  outline: 3px solid rgb(217 93 57 / 35%);
  outline-offset: 2px;
}

button {
  height: 48px;
  margin-top: 5px;
  border: 0;
  border-radius: 11px;
  background: #24241f;
  color: #fbf0d9;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

button:hover { background: #3a3a33; }
