.auth-gate {
  position: fixed;
  z-index: 100000;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  background: #050d13 url('../images/login-background.png') center / cover no-repeat;
}

.auth-gate[hidden] {
  display: none;
}

.auth-gate-panel {
  width: min(100%, 30rem);
  text-align: center;
}

.auth-gate-title {
  margin: 0 0 1.25rem;
  color: #f3e2a4;
  font-family: 'Fellow Maiden', 'Sigmar One', serif;
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 1;
  text-shadow: 0 0 .75rem #000, 0 .2rem .2rem #000;
}

.auth-gate-clerk {
  display: flex;
  justify-content: center;
}

.auth-gate-message {
  margin: 1rem auto;
  padding: 1rem;
  border: 1px solid #f3e2a4;
  border-radius: .5rem;
  color: #fff;
  background: rgba(0, 0, 0, .82);
  font: 1rem/1.5 Arial, sans-serif;
}

.auth-gate-button {
  padding: .7rem 1.2rem;
  border: 1px solid #f3e2a4;
  border-radius: .4rem;
  color: #f3e2a4;
  background: #23170d;
  cursor: pointer;
  font: 700 1rem Arial, sans-serif;
}
