body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(6, 10, 15, 0.94), rgba(11, 18, 27, 0.98)),
    radial-gradient(circle at 50% 18%, rgba(244, 176, 103, 0.12), transparent 34%);
  color: #f6f1ea;
  font-family: Roboto, sans-serif;
}

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

.login-card {
  width: min(100%, 420px);
  border: 1px solid rgba(244, 176, 103, 0.2);
  background: rgba(12, 19, 29, 0.94);
  padding: 38px 32px;
  display: grid;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.login-card-inner {
  width: min(100%, 354px);
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0 auto;
  text-align: center;
}

.login-kicker {
  margin: 0;
  color: #f4b067;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.login-brand-logo-box {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  justify-self: center;
  margin: 0 0 14px;
}

.login-brand-logo {
  width: 142px;
  height: auto;
  transform: translateX(1px);
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.38));
}

.login-copy-block {
  display: grid;
  justify-items: center;
  gap: 13px;
}

.login-card h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.login-copy,
.login-status {
  margin: 0;
  color: #aab9cb;
  line-height: 1.5;
}

.login-copy {
  max-width: 310px;
}

.login-google {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(244, 176, 103, 0.34);
  background: #131f2d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.login-google:hover,
.login-google:focus-visible {
  border-color: #f4b067;
  background: #19283a;
  box-shadow: 0 0 18px rgba(244, 176, 103, 0.16);
  outline: none;
}

.login-google-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111827;
  font-weight: 700;
}
