body.auth-page {
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: min(92vw, 380px);
  background: var(--c-grey-0a0a0a);
  border: 1px solid var(--c-grey-222);
  border-top: 2px solid var(--c-amber);
  padding: 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.auth-title {
  color: var(--c-cyan);
  text-shadow: 0 0 10px var(--c-cyan);
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
  margin: 0 0 6px;
}

.auth-subtitle {
  color: var(--c-grey-888);
  font-size: 0.65rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px;
}

.auth-label {
  display: block;
  color: var(--c-amber);
  font-size: 0.7rem;
  font-weight: bold;
  margin: 12px 0 6px;
}

.auth-input {
  width: 100%;
  height: 40px;
  background: var(--c-black);
  color: var(--c-cyan-bright);
  border: 1px solid var(--c-cyan);
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  outline: none;
}

.auth-input:focus {
  box-shadow: inset 0 0 5px rgba(0, 242, 255, 0.5);
}

.auth-submit {
  width: 100%;
  height: 40px;
  margin-top: 20px;
  background: var(--c-grey-111);
  color: var(--c-amber);
  border: 1px solid var(--c-amber);
  font-family: var(--font-mono);
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 8px var(--c-amber);
  cursor: pointer;
}

.auth-submit:hover {
  background: var(--c-amber);
  color: var(--c-black);
  text-shadow: none;
}

.auth-flash {
  padding: 8px 10px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  border-left: 4px solid;
  background: var(--c-grey-111);
}

.auth-flash--alert {
  color: var(--c-red);
  border-color: var(--c-red);
}

.auth-flash--notice {
  color: var(--c-green);
  border-color: var(--c-green);
}
