/* Globale Schriftart */
* {
  font-family: "Montserrat", sans-serif;
}

/* Headingüberschriften */
h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
}

/* Formstil */
form {
  margin: 50px auto;
  width: 25%;
  min-width: 300px;
}

/* Formcontent */
.form-content {
  overflow: hidden;
  clear: both;
}

/* Fieldsetsstil */
fieldset {
  background-color: #ececec;
  border-radius: 20px;
}

/* Inputfelderstil */
button,
datalist,
fieldset,
input,
legend,
optgroup,
option,
output,
select,
textarea {
  padding: 10px;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #000000;
  border-radius: 20px;
}

/* Labelstil */
label {
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
}

/* Zurück Button */
.back-button {
  float: right;
  color: #000000;
  background-color: #ececec;
  border-radius: 20px;
  &:hover {
    color: #fff;
    background-color: #777;
  }
}

/* Weiter Button */
.next-button {
  float: left;
  color: #000000;
  background-color: #d8b77c;
  border-radius: 20px;
  &:hover {
    color: #fff;
    background-color: #777;
  }
}

/* Errormessages */
.error-text {
  color: #f00;
  display: block;
  margin-top: 4px;
  min-height: 20px;
}

/* Header */
.header {
  color: #d8b77c;
  text-align: center;
}

/* Footer */
.footer {
  color: #d8b77c;
  text-align: center;
}

/* Progress Bar Stil */
.progress-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.circle {
  width: 20px;
  height: 20px;
  border: 2px solid #4c6b34;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.circle.active {
  background-color: #4c6b34;
  border: 2px solid #4c6b34;
}

.label {
  margin-top: 8px;
  color: #4c6b34;
  font-size: 14px;
  text-align: center;
}

.bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ececec;
  z-index: 0;
}

.circle.active + .bar {
  background-color: #4c6b34;
}

/* Logo im Header */
.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 75px;
  height: auto;
}

/* Bild */
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footerbild */
.footerbild {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Disclaimer Button */
.disclaimer-button {
  float: center;
  color: #000000;
  background-color: #d8b77c;
  border-radius: 10px;
  &:hover {
    color: #fff;
    background-color: #777;
  }
}

/* Startseite Button */
.startseite-button {
  color: #000000;
  background-color: #d8b77c;
  border-radius: 10px;
  &:hover {
    color: #fff;
    background-color: #777;
  }
}

.startseite-button-text {
  text-align: center;
}

/* Responsive Design für Tablets */
@media (max-width: 768px) {
  /* Progress Bar */
  .circle {
    width: 18px;
    height: 18px;
    margin-bottom: 10px;
  }

  .label {
    font-size: 10px;
  }

  .bar {
    height: 2px;
  }

  /* Headertext */
  .header {
    color: #d8b77c;
    text-align: left;
  }
}

/* Responsive Design für Mobilgeräte */
@media (max-width: 480px) {
  /* Progress Bar */
  .progress-bar {
    padding: 0 10px;
  }

  .circle {
    width: 16px;
    height: 16px;
    margin-bottom: 10px;
  }

  .label {
    font-size: 6px;
  }

  .bar {
    height: 2px;
  }

  /* Headertext */
  .header {
    color: #d8b77c;
    text-align: left;
  }
}
