/* Anmeldung und Ersteinrichtung – eigenständig, ohne die Layouts der Bereiche. */
.auth {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
  background: #0f1b2d;
  color: #1b2430;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.auth__card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.auth__brand {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f6fde;
  font-weight: 600;
}

.auth__title {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
}

.auth__lead {
  margin: 0 0 8px;
  color: #5a6678;
  font-size: 14px;
}

.auth__error {
  margin: 16px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fdecec;
  color: #8f1d1d;
  font-size: 14px;
}

.auth__form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.auth__label {
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: #3a4556;
}

.auth__soft {
  font-weight: 400;
  color: #7a8596;
}

.auth__input {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #c9d1de;
  border-radius: 8px;
  background: #fff;
  color: inherit;
}

.auth__input:focus {
  outline: 2px solid #2f6fde;
  outline-offset: 1px;
  border-color: #2f6fde;
}

.auth__button {
  margin-top: 24px;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: #2f6fde;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.auth__button:hover {
  background: #2459b8;
}

.auth__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.auth__button--link,
.auth__button--ghost {
  margin-top: 0;
  text-align: center;
  text-decoration: none;
}

.auth__button--ghost {
  background: transparent;
  color: #3a4556;
  border: 1px solid #c9d1de;
}

.auth__button--ghost:hover {
  background: #f1f4f9;
}
