:root {
  color-scheme: light;
  --purple: #362c66;
  --purple-soft: #eae0ff;
  --peach: #ffe3c1;
  --ink: #241d49;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 127, 148, .25), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(210, 152, 0, .18), transparent 28%),
    var(--peach);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 22px;
  pointer-events: none;
  border: 1px solid rgba(54, 44, 102, .16);
  border-radius: 34px;
}

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

.login-card {
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(54, 44, 102, .12);
  border-radius: 38px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 35px 90px rgba(54, 44, 102, .14);
  backdrop-filter: blur(20px);
}

.brand-lockup,
.moritz-brand {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 26px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(54, 44, 102, .12);
}

.moritz-brand { gap: 13px; }
.moritz-brand img:first-child { width: 38px; }
.moritz-brand img:last-child { width: 155px; }
.brand-lockup > span { color: rgba(54, 44, 102, .42); font-size: 1.35rem; }
.mockingbird-logo { width: 165px; margin-left: auto; }

.login-copy { margin: 46px 0 32px; }
.eyebrow {
  margin: 0 0 13px;
  color: #7c4264;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  max-width: 570px;
  margin: 0;
  color: var(--purple);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .95;
  text-transform: uppercase;
}

.login-copy p:last-child {
  max-width: 500px;
  margin: 24px 0 0;
  color: #625c75;
  font-size: 1.05rem;
  line-height: 1.65;
}

.login-form { display: grid; gap: 12px; }
.login-form label { font-size: .82rem; font-weight: 800; }

.login-form input {
  min-height: 58px;
  border: 1px solid rgba(54, 44, 102, .18);
  border-radius: 16px;
  padding: 0 18px;
  color: var(--purple);
  background: #fff;
  font: inherit;
  outline: none;
}

.login-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(54, 44, 102, .1);
}

.login-form button {
  min-height: 58px;
  margin-top: 8px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--purple);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.login-form button:hover { background: #241d49; }
.login-error { margin: 0; color: #a12948; font-size: .85rem; font-weight: 800; }
.login-note { margin: 26px 0 0; color: #888095; font-size: .8rem; text-align: center; }

@media (max-width: 620px) {
  body::before { inset: 10px; border-radius: 24px; }
  .login-shell { padding: 20px; }
  .login-card { padding: 32px 24px; border-radius: 28px; }
  .brand-lockup { flex-wrap: wrap; gap: 16px; }
  .mockingbird-logo { width: 145px; margin-left: 0; }
  .moritz-brand img:last-child { width: 130px; }
}
