.auth-locked > header,
.auth-locked > main,
.auth-locked > footer {
  visibility: hidden;
}

#authGate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(244,183,0,.16), transparent 32rem),
    #070707;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
}

.auth-card {
  width: min(430px, 100%);
  padding: 32px;
  border: 1px solid rgba(244,183,0,.38);
  border-radius: 20px;
  background: linear-gradient(145deg, #181818, #0d0d0d);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}

.auth-brand {
  margin-bottom: 22px;
  text-align: center;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.auth-brand span {
  color: #f4b700;
}

.auth-card h1 {
  margin: 0 0 8px;
  text-align: center;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.auth-card p {
  margin: 0 0 22px;
  color: #bdbdbd;
  text-align: center;
  font-size: .9rem;
  line-height: 1.5;
}

.auth-field {
  display: block;
  margin-top: 14px;
}

.auth-field span {
  display: block;
  margin-bottom: 7px;
  font-size: .78rem;
  font-weight: 800;
}

.auth-field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  outline: 0;
  color: #fff;
  background: #090909;
}

.auth-field input:focus {
  border-color: #f4b700;
  box-shadow: 0 0 0 3px rgba(244,183,0,.12);
}

.auth-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, #ffd86b, #f4b700);
  color: #151000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.auth-error {
  min-height: 1.2em;
  margin-top: 12px !important;
  color: #ff7e78 !important;
  font-weight: 700;
}

.auth-logout {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  border: 1px solid rgba(244,183,0,.5);
  border-radius: 999px;
  padding: 8px 13px;
  cursor: pointer;
  background: rgba(8,8,8,.9);
  color: #ffd86b;
  font: 700 .75rem "Montserrat", Arial, sans-serif;
}

@media print {
  #authGate,
  .auth-logout {
    display: none !important;
  }
}
