body{
    background-color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    color: rgb(117, 117, 117);
}
input[type="datetime-local"] {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 35px;
  width: 300px;
  border: none;
  border-bottom: 3px solid rgb(0, 155, 0);
  background-color: rgb(236, 236, 236);
}

/* sichtbaren Fokus und andere Farbe beim Fokus */
input[type="datetime-local"]:focus {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  outline: none;
  border-bottom: 3px solid #ffbb00;
  accent-color: #FED703;
}
.abwesenheitsgrund{
  height: 35px;
  width: 600px;
  border: none;
  background-color: rgb(236, 236, 236);
  border-bottom: 3px solid #dfdfdf;
  accent-color: #ffbb00;
}
.abwesenheitsgrund:focus{
  height: 35px;
  width: 600px;
  outline: none;
  background-color: rgb(236, 236, 236);
  border-bottom: 3px solid #ffbb00;
  accent-color: #ffbb00;
}
input[type="text"]{
  height: 35px;
  width: 600px;
  border: none;
  background-color: rgb(236, 236, 236);
  border-bottom: 3px solid #dfdfdf;
  accent-color: #ffbb00;
}
input[type="text"]:focus{
  height: 35px;
  width: 600px;
  outline: none;
  background-color: rgb(236, 236, 236);
  border-bottom: 3px solid #ffbb00;
  accent-color: #ffbb00;
}
button[type="submit"]{
  height: 42px;
  width: 120px;
  margin-top: 30px;
  border-radius: 5000px;
  border: none;
  background-color: #ffbb00;
  color: white;
  font-size: 18px;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
}
button[type="submit"]:hover{
  cursor: pointer;
  background-color: #ffd86e;
}
