/* Kundenzugang: Ergaenzungen zum gemeinsamen Stylesheet der Website */
  .auth-wrap { min-height: calc(100vh - 140px); display: grid; place-items: center; padding: 32px 0; }
  .auth-card { width: min(440px, calc(100% - 32px)); padding: 30px 28px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .auth-card h1 { font-size: 1.45rem; margin-bottom: .35em; }
  .auth-card .sub { color: var(--muted); margin-bottom: 20px; }
  .field { display: block; margin-bottom: 14px; }
  .field span { display: block; margin-bottom: 6px; font-size: .88rem; font-weight: 700; color: var(--muted); }
  .field input { width: 100%; min-height: 42px; padding: 0 12px; color: var(--ink); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 9px; font: inherit; }
  .field input:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
  .field input[readonly] { color: var(--muted); }
  .button--full { width: 100%; margin-top: 4px; }
  .divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--muted); font-size: .85rem; }
  .divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
  .google-btn { display: flex; align-items: center; justify-content: center; gap: 10px; }
  .google-btn svg { width: 18px; height: 18px; }
  .alert { margin-bottom: 16px; padding: 12px 14px; border-radius: 10px; font-size: .93rem; background: var(--coral-soft); color: #7a2e25; border: 1px solid #e7c2bb; }
  .alert--ok { background: var(--teal-soft); color: var(--teal-strong); border-color: #bfe3dd; }
  .hint { color: var(--muted); font-size: .85rem; margin: 14px 0 0; }
  .hint a { color: var(--teal-strong); }
  .dash-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 36px 0 10px; flex-wrap: wrap; }
  .dash-head form { margin: 0; }
  .badge { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--teal-soft); color: var(--teal-strong); font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
  .steps-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
  .step-item { display: grid; grid-template-columns: 40px 1fr auto; gap: 14px; align-items: center; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
  .step-item__num { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; color: #fff; background: var(--teal); font-weight: 800; }
  .step-item--done .step-item__num { background: var(--success); }
  .step-item--todo .step-item__num { background: var(--line); color: var(--muted); }
  .step-item h3 { margin: 0 0 2px; font-size: 1rem; }
  .step-item p { margin: 0; color: var(--muted); font-size: .9rem; }
  @media (max-width: 600px) { .step-item { grid-template-columns: 36px 1fr; } .step-item .button { grid-column: 2; justify-self: start; } }
  .site-footer { margin-top: 40px; }

.brand__sub { color: var(--muted); font-weight: 600; font-size: .85rem; }
.footer-note--flat { border-top: 0; margin-top: 0; padding-top: 0; }
.mt-10 { margin-top: 10px; }
.mb-14 { margin: 0 0 14px; }
.muted-line { color: var(--muted); margin: 0; }

.auth-card--wide { width: min(640px, calc(100% - 32px)); }
.scope-list { padding-left: 1.1em; }
.scope-list li { margin-bottom: 12px; }
.scope-list code { display: inline-block; margin: 3px 0; font-size: .82rem; }
.button--danger { background: var(--coral); border-color: var(--coral); }
.button--danger:hover { background: #a9564c; border-color: #a9564c; }
.channel-head { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; margin-bottom: 16px; }
.channel-avatar { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line); }
@media (max-width: 700px) { .channel-head { grid-template-columns: auto 1fr; } .channel-head .button { grid-column: 1 / -1; justify-self: start; } }
.bars { display: block; width: 100%; height: 120px; margin-top: 6px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 10px; }
.bars rect { fill: var(--teal); }
.bars rect:hover { fill: var(--teal-strong); }
