/* Layout fuer Einrichtungs- und Anmeldeseiten */
body.centered {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(180deg, #eef2f7 0%, #dfe7f1 100%);
}

.sheet {
  width: 100%;
  max-width: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 2.25rem;
}

.sheet__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.sheet__brand img {
  height: 40px;
  width: auto;
}

.sheet__brand div {
  font-weight: 650;
  font-size: 1.05rem;
}

.sheet__brand span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

.sheet h1 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.sheet > p.lead {
  color: var(--muted);
  margin: 0 0 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.step-list {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.step-list li {
  margin-bottom: 0.35rem;
}

.token-box {
  background: var(--surface-2);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 1rem;
  word-break: break-all;
  font-size: 0.85rem;
  margin: 1rem 0;
}

.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ok-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.success-check svg {
  width: 34px;
  height: 34px;
  stroke: var(--ok);
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footnote {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footnote a {
  color: var(--brand);
}
