.temporary-password-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.78);
}
.temporary-password-card {
  width: min(34rem, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.9rem;
  background: #ffffff;
  box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, 0.35);
  color: #0f172a;
}
.temporary-password-card h1 { margin-top: 0; }
.temporary-password-form { display: grid; gap: 1rem; }
.temporary-password-form label { display: grid; gap: 0.4rem; font-weight: 700; }
.temporary-password-form input { width: 100%; }
.temporary-password-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: flex-end; }
.temporary-password-error { min-height: 1.25rem; color: #b42318; font-weight: 700; }
