/* ---- Grundlayout ---- */
body.dark {
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  background-color: #1f2023;
  color: #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
}

/* ---- Card Layout ---- */
.card {
  background: #2c2f33;
  padding: 2rem 3rem;
  border-radius: 18px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
  text-align: center;
  width: clamp(300px, 95%, 600px);
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  animation: blendIn 1s ease-out forwards;
}

/* ---- Animationen ---- */
@keyframes blendIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ---- Überschriften ---- */
h1 {
  font-size: 1.9rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

/* ---- Texte ---- */
p {
  font-size: 1rem;
  color: #cbd5e1;
  margin: 0.5rem 0;
  line-height: 1.5;
}

/* ---- Page Layout ---- */
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background-color: #1f2023;
}
