
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at top, #1a1a1a 0%, #000000 100%);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  flex-direction: column;
}
.container {
  max-width: 480px;
  margin: auto;
  padding: 20px;
}
.logo {
  max-width: 80%;
  margin-bottom: 20px;
}
h1 {
  color: #ff4081;
  margin-bottom: 10px;
}
.description {
  font-size: 1em;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-box {
  background-color: rgba(30, 30, 30, 0.9);
  padding: 20px;
  border-radius: 10px;
}
input[type="text"],
input[type="password"] {
  width: 94%;
  padding: 10px;
  margin: 8px 0;
  border: none;
  border-radius: 6px;
}
button {
  background-color: #ff4081;
  border: none;
  color: white;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}
.ds-hinweis {
  font-size: 0.85em;
  color: #aaa;
  margin-top: 15px;
  text-align: left;
}
.checkbox {
  font-size: 0.9em;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.note {
  font-size: 0.85em;
  color: #aaa;
  margin-top: -5px;
  margin-bottom: 15px;
  text-align: left;
}

.freischalt-hinweis {
  font-size: 0.9em;
  color: #ffcc00;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
