@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
/* Globale Stile */
body {
  background-color: #3d3d3d;
  font-family: Questrial, Arial, sans-serif !important;
  color: #AAAAAA;
  text-align: center;
}

a {
    color: #adaddd;
}

/* Stile für die Begrüßung */
.welcome {
  font-size: 2rem;
  text-align: center;
  margin-top: 2rem;
}

/* Stile für das Formular */
form {
  max-width: 400px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

form input[type="text"],
form input[type="password"],
form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  box-shadow: inset 0 0 0.5rem rgba(0, 0, 0, 0.1);
  outline: 0;
}

form textarea {
  height: 8rem;
}

form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background-color: #4c4cff;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

form input[type="submit"]:hover {
  background-color: #3333ff;
}
