:root {
  color-scheme: dark;
  --bg: #07090b;
  --surface: #101418;
  --surface-soft: #151b20;
  --text: #eef4f2;
  --muted: #98a6ad;
  --line: #27313a;
  --accent: #d6a84f;
  --accent-dark: #f1c76c;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -12%, rgba(214, 168, 79, 0.18), transparent 34%),
    var(--bg);
  color: var(--text);
}

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

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

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

.auth-panel {
  width: min(100%, 460px);
  padding: 20px;
  border: 1px solid rgba(214, 168, 79, 0.18);
  border-radius: 18px;
  background: rgba(16, 20, 24, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214, 168, 79, 0.45);
  border-radius: 10px;
  background: linear-gradient(145deg, #d6a84f, #7a5a20);
  color: #11100d;
  font-size: 0.84rem;
}

.auth-copy {
  margin: 34px 0 22px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 11vw, 3.2rem);
  line-height: 0.96;
}

.auth-copy p,
.auth-link {
  color: var(--muted);
  line-height: 1.5;
}

.auth-form {
  display: grid;
  gap: 13px;
}

label {
  color: #d9e0df;
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #090d10;
  color: var(--text);
  padding: 11px 12px;
  outline: none;
}

input:focus,
select:focus {
  border-color: rgba(214, 168, 79, 0.7);
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.16);
}

.primary-button {
  display: grid;
  min-height: 50px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f1c76c, #b9822c);
  color: #15100a;
  cursor: pointer;
  font-weight: 900;
}

.auth-link {
  margin: 16px 0 0;
  text-align: center;
}

.auth-link a {
  color: var(--accent-dark);
  font-weight: 900;
}
