body {
  font-family: var(--techno);
  background: var(--ink);
  color: var(--glow);
  overflow: hidden;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-gate__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.auth-gate__site {
  font-size: clamp(0.55rem, 1.8vw, 0.65rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: lowercase;
  color: rgba(158, 200, 208, 0.45);
}

.auth-gate__site a {
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.35em;
  padding: 0.35rem 0.5rem;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.auth-gate__site a:hover {
  color: var(--glow);
  text-shadow: 0 0 20px rgba(200, 228, 234, 0.4);
}

.auth-gate__title {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.55em;
  padding-left: 0.55em;
  text-transform: uppercase;
  color: var(--glow);
  text-shadow:
    0 0 20px rgba(158, 200, 208, 0.5),
    0 0 60px rgba(106, 152, 160, 0.25);
}

.auth-gate__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.auth-gate__label {
  font-size: clamp(0.55rem, 1.8vw, 0.65rem);
  font-weight: 400;
  letter-spacing: 0.45em;
  padding-left: 0.45em;
  text-transform: lowercase;
  color: rgba(158, 200, 208, 0.45);
}

.auth-gate__input {
  width: 100%;
  max-width: 240px;
  padding: 0.75rem 1rem;
  font-family: var(--techno);
  font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--glow);
  text-align: center;
  background: rgba(8, 12, 16, 0.5);
  border: 1px solid rgba(158, 200, 208, 0.2);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.auth-gate__input:focus {
  border-color: rgba(200, 228, 234, 0.5);
  box-shadow: 0 0 24px rgba(158, 200, 208, 0.15);
}

.auth-gate__error {
  font-size: clamp(0.5rem, 1.6vw, 0.6rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(240, 160, 160, 0.85);
}

.auth-gate__submit {
  padding: 0.75rem 1.5rem;
  font-family: var(--techno);
  font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  padding-left: calc(1.5rem + 0.55em);
  text-transform: lowercase;
  color: rgba(158, 200, 208, 0.55);
  background: transparent;
  border: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.auth-gate__submit:hover {
  color: var(--glow);
  text-shadow: 0 0 24px rgba(200, 228, 234, 0.45);
}
