/* Reset default margins and paddings */
body,
form {
  margin: 0;
  padding: 0;
}

/* Set background image */
body {
  background-image: url("media/headerbild.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  background-color: black;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* Set background overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.478);
}

/* Center the form on the page */
form {
  margin: 100px auto;
  padding: 50px;
  width: 50%;
  min-width: 400px;
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Style the fieldsets */
fieldset {
  padding: 0;
  margin: 0;
}

.schritt{
  border: none;
}

/* Style the form content */
.form-content {
  overflow: hidden;
  clear: both;
}

/* Style the input fields */
input[type="radio"],
input[type="text"],
input[type="submit"],
input[type="date"],
input[type="tel"],
input[type="email"],
input[type="number"],
.auswahl{
  border-radius: 30px;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

input[type="radio"],
input[type="text"],
input[type="date"],
input[type="tel"],
input[type="email"],
input[type="number"],
.auswahl {
  border: none;
  padding: 10px;
  font-size: 1em;
  width: 70%;
}

input[type="date"],
input[type="tel"],
input[type="email"]{
width: 30%;
}

input[type="number"]{
  width: 20%;
}

input[type="checkbox"]{
  border-radius: 30px;
  box-sizing: border-box;
  border: none;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.weiter {
border: none;
background-color: #00E1A9;
text-align: center;
float: right;
font-weight: bold;
font-size: 20px;
padding: 15px 40px 15px 40px;
}

.weiter:hover{
  background-color: #039470;
}

.back{
  color: #00E1A9;
  background-color: black;
  border-color: white;
  text-align: center;
  float: left;
  font-weight: bold;
  font-size: 20px;
  padding: 15px 40px 15px 40px;
}

.back:hover{
  border: none;
  background-color: white;
  color: black;
  border-color: black;
}

input[type="radio"] {
  display: none;
}

/* Style the labels for radio buttons */
label {
  font-size: 1em;
  font-weight: bold;
  margin-right: 10px;
  cursor: pointer;
}

/* Style the radio buttons */
label:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: 5px;
  vertical-align: middle;
}

input[type="radio"]:checked + label:before {
  background-color: white;
}

input[type="checkbox"]:checked + label:before {
  color: #00E1A9;
}

.ubertitel {
  color: white;
  font-size: 22px;
  font-weight: bold;
  margin-right: 10px;
  cursor: pointer;
}

/* Style the error messages */
.error-text {
  color: #f00;
  margin-top: 5px;
}

/* Add logo */
.logo {
  width: 400px;
  height: auto;
  background-image: url("media/headerbild.png");
  background-size: cover;
}

.column {
  float: left;
  width: 33.33%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.menu{
  display: flex;
  flex-direction: row;
}

.step{
  text-align: center;
  font-size: 26px;
  border: 2px solid white;
  margin-left: 30px;
  color: white;
  border-radius: 100%;
  padding: 9px 20px 9px 20px;
  font-family: Impact, 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
}
  


.active{
  text-align: center;
  font-size: 26px;
  margin-left: 30px;
  color: black;
  background-color: #00E1A9 ;
  border: 2px solid black;
  border-radius: 100%;
  padding: 9px 20px 9px 20px;
  font-family: Impact, 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
}

.process{
  display: flex;
  flex-direction: row;
  margin-left: 90px;
}

.start {
  border: none;
  background-color: #00E1A9;
  color: black;
  font-style: none;
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
  float: right;
  font-weight: bold;
  font-size: 20px;
  padding: 15px 40px 15px 40px;
  }

  .start:hover{
    background-color: #039470;
  }

  input[type="range"]{
    width: 70%;
    border-color: #00E1A9;
  }

/* Add responsive styles */
@media only screen and (max-width: 600px) {
  form {
    width: 80%;
  }
}
