.anmelde-seite {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .anmelde-seite { grid-template-columns: 1.15fr 1fr; }
}

.marke {
  background: var(--tinte);
  color: var(--papier);
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(clamp(2rem, 6vw, 5rem) + env(safe-area-inset-top));
}

.marke__wort { color: var(--papier); opacity: 0.55; }

.marke h1 {
  font-size: var(--h1);
  margin: clamp(2rem, 8vh, 5rem) 0 1.25rem;
  max-width: 12ch;
}
.marke h1 em { font-style: italic; color: #E9A08A; }

.marke p {
  max-width: 34ch;
  color: #C9C6BE;
  margin: 0;
}

.marke__fuss {
  margin-top: clamp(2rem, 8vh, 4rem);
  font-size: 0.8125rem;
  color: #7E7A72;
  border-top: 1px solid #2E2E2A;
  padding-top: 1rem;
}

.anmeldung {
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 7vw, 4rem) clamp(1.5rem, 5vw, 4rem);
}

.anmeldung__inhalt { width: 100%; max-width: 380px; }
.anmeldung h2 { font-size: var(--h2); margin-bottom: 0.5rem; }
.anmeldung__hinweis { color: var(--tinte-70); margin: 0 0 2rem; }

.feld { margin-bottom: 1.25rem; }
.feld label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
}
.feld input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
}
.feld input:focus { border-color: var(--akzent); }

.anmeldung .btn { width: 100%; margin-top: 0.5rem; }

.fehlerbox {
  background: #FBEAE5;
  border-left: 3px solid var(--minus);
  color: #7C2A1C;
  padding: 12px 14px;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
