body {
  margin: 0;
  background-color: #1e1e1e;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: #111;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(222, 193, 78, 0.8);
  width: fit-content;
  text-align: center;
}

.login-box h1 {
  margin-bottom: 20px;
}

.input-field,
button {
  display: block;
  width: 140px;
  padding: 10px;
  margin: 10px auto;
  border-radius: 6px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 14px;
  background: #222;
  color: white;
}

/* Einheitliches Styling für SELECT */
select.input-field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #222;
  color: white;
  border: none;
  text-align: center;
  cursor: pointer;
  position: relative;
}

/* Optional: Pfeil entfernen und durch eigenes Symbol ersetzen */
select.input-field::-ms-expand {
  display: none;
}

/* Dropdown-Optionen */
select.input-field option {
  background-color: #222;
  color: white;
}

/* Fehlerzustand neutralisieren */
.input-field:invalid {
  box-shadow: none;
  border: 1px solid #333;
}

/* Button */
button {
  background: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #a38900;
  color: white;
}

.error {
  color: red;
  margin-top: 10px;
  font-size: 14px;
}
