* {
  font-size: 24px;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: rgba(255, 140, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

#container {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* alle Elemente untereinander */
  width: 360px;
}

#container h2 {
  text-align: center;
  margin-bottom: 20px;
}

#container input {
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 25px;
  border: 4px solid #444;
  outline: none;
  width: 100%;
}

#container button {
  padding: 15px;
  border-radius: 25px;
  border: 4px solid #444;
  background-color: white;
  margin-bottom: 10px;
  cursor: pointer;
  width: 100%;
}

#msgBox {
  margin-top: 15px;
  min-height: 30px;
  text-align: center;
  font-weight: bold;
}

.error {
  color: red;
}

.success {
  color: green;
}
