@font-face {
  font-family: "Poppins";
  src: url("poppins-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("poppins-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #000000;
  --paper: #f9f9f9;
  --white: #ffffff;
  --peach: #e84e0f;
  --muted: #626262;
  --line: rgba(0, 0, 0, 0.14);
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", Arial, sans-serif;
}

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

.login-panel {
  width: min(100%, 470px);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
}

.login-logo {
  display: block;
  width: 150px;
  height: auto;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--peach);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(38px, 8vw, 60px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.intro {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

form { display: grid; gap: 16px; }

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 14px;
}

input:focus {
  outline: 3px solid rgba(232, 78, 15, 0.2);
  border-color: var(--peach);
}

button {
  min-height: 50px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.error {
  padding: 11px 12px;
  border: 1px solid rgba(157, 42, 33, 0.22);
  border-radius: 9px;
  color: #7d251f;
  background: #fde9e5;
  font-size: 12px;
  line-height: 1.5;
}

small {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}
