:root {
  color-scheme: light;
  font-family: "Outfit", system-ui, sans-serif;
  --accent: #e7a044;
  --text: #29241f;
  --muted: #756b60;
  --line: #ddd1c1;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(231, 160, 68, 0.18), transparent 32rem),
    #f8f5ef;
  color: var(--text);
}

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

.login-card {
  width: min(430px, 100%);
  padding: clamp(28px, 7vw, 44px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf3;
  box-shadow: 0 24px 70px rgba(83, 63, 38, 0.13);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid #b66d20;
  border-radius: 10px;
  background: #f9e7cd;
  color: #955414;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.eyebrow {
  margin: 0 0 10px;
  color: #a35c18;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 8vw, 42px);
  letter-spacing: -0.04em;
}

.intro {
  margin: 12px 0 30px;
  color: var(--muted);
  line-height: 1.5;
}

label {
  display: block;
  margin: 16px 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--text);
  font: inherit;
}

input:focus {
  outline: none;
  border-color: #c77b28;
  box-shadow: 0 0 0 3px rgba(231, 160, 68, 0.17);
}

button {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bd7628;
  border-radius: 8px;
  background: var(--accent);
  color: #3d260f;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.login-error {
  min-height: 20px;
  margin: 12px 0;
  color: #b83f3f;
  font-size: 13px;
}
