.staff-login {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem 3rem;
}

.staff-login__sheet {
  width: 100%;
  max-width: 26rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.staff-login__header {
  text-align: center;
}

.staff-login__eyebrow {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgb(var(--muted-2));
}

.staff-login__title {
  margin: 0.75rem 0 0;
  font-family: var(--font-ui);
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: rgb(var(--fg));
}

.staff-login__subtitle {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgb(var(--muted));
}

.staff-login__error {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(248, 113, 113, 0.3);
  background: rgba(248, 113, 113, 0.1);
  font-size: 0.875rem;
  color: rgb(254, 202, 202);
}

.staff-login__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.staff-login__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.staff-login__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgb(var(--muted));
}

.staff-login__field input {
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgb(var(--fg));
  font-size: 0.9375rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.staff-login__field input::placeholder {
  color: rgb(var(--muted-2));
  opacity: 1;
}

.staff-login__field input:focus {
  outline: 2px solid rgba(var(--accent), 0.45);
  outline-offset: 1px;
  border-color: rgba(var(--accent), 0.55);
}

.staff-login__hint {
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgb(var(--muted-2));
}

.staff-login__hint--shared {
  color: rgb(var(--muted));
}

.staff-login__submit {
  margin-top: 0.35rem;
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
}
