body {
  margin-left: 50px;
  margin-top: 50px;
}

#startseite label {
  display: inline-block;
  width: 150px;
  color: red;
  font-family: Arial, sans-serif;
}


.rand {
  margin-left: 50px;
  margin-top: 50px;
}
.subtitle {
  font-weight: bold;
  color: red;
  font-family: Arial, sans-serif;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"],
input[type="tel"] {
  font-family: Arial, sans-serif;
  color: red;
  border: 1px solid red;
}
.form-input {
  width: 200px;
}
.form-input.small {
  width: 85px;
}
.form-input.medium {
  width: 150px;
}
.form-input.large {
  width: 250px;
}
.form-input.with-margin {
  margin-left: 5px;
}

.number-of-sites {
  margin-left: 25%;
  font-family: Arial, sans-serif;
  color: red;
}

label {
  font-family: Arial, sans-serif;
  color: red;
}


#anrede-frau {
  margin-left: -110px;
}

#ort {
  margin-left: -120px;
}

/*Header im CSS*/
header {
  background-color: red;
  color: white;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 100px;
  margin-left: -50px;
}

.logo {
  width: 100px;
  margin-right: 120px;
}

h1 {
  font-family: Arial, sans-serif;
color: white;}
/*Ende vom Header*/

textarea {
  width: 300px;
}



/*Buttons Aussehen*/
.button-forward {
  background-color: red;
  color: white;
  padding: 10px 20px;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.button-back {
  background-color: white;
  color: red;
  padding: 10px 20px;
  border: 1px solid red;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}


.button-back-firstsite {
  background-color: white;
  color: white;
  padding: 10px 20px;
  border: 0px solid white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
/*Ende Buttons Aussehen*/

/*Positionierung der Buttons 2*/
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}

.button-back,
.button-forward {
  flex-basis: 30%; /* Breite der Buttons */
}

.number-of-sites {
  flex-grow: 1; /* Füllt den verbleibenden Platz aus */
  text-align: left;
  padding-right: 180px;
}

footer {
  font-size: 8px;
  font-family: Arial, sans-serif;
  margin-left: 50px;
}


/*Bestätigungseite*/
h2 {
  color: red;
  font-family: Arial, sans-serif;
}

p, a {
  font-family: Arial, sans-serif;
}

.error-text {
  word-wrap: break-word;
  color: orange;
  font-size: 10px;
}
