/* Staging password gate — a plain form standing in for a Basic Auth prompt */

.staging-gate-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.staging-gate-input {
  font: inherit;
  padding: 0.75rem 1rem;
  border: 1px solid var(--theme-accent, #8ab4a0);
  background: transparent;
  color: inherit;
  text-align: center;
}

.staging-gate-submit {
  font: inherit;
  padding: 0.75rem 1rem;
  border: 1px solid var(--theme-accent, #8ab4a0);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.staging-gate-submit:hover {
  background: var(--theme-accent, #8ab4a0);
  color: var(--theme-bg, #0d0d0d);
}

.staging-gate-error {
  color: var(--color-failure-text, #c87878);
}
