  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f5f5f5;
    font-family: 'Roboto', sans-serif;
    overflow: auto;
    /* Hide scrollbars */
  }

  /* Für Webkit-basierte Browser */
  ::-webkit-scrollbar {
    width: 8px;
    /* Breite des Scrollbalkens */
    height: 8px;
    /* Höhe des horizontalen Scrollbalkens */
  }

  ::-webkit-scrollbar-track {
    background: #f0f0f5;
    /* Hintergrund des Scrollbereichs */
    border-radius: 10px;
    /* Abgerundete Ecken für den Track */
  }

  ::-webkit-scrollbar-thumb {
    background: #c0c0c5;
    /* Hintergrund der Scrollbar-Knöpfe */
    border-radius: 10px;
    /* Abgerundete Ecken für die Thumb */
    border: 2px solid #f0f0f5;
    /* Optional: kleiner Rand um den Scrollbalken */
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #a0a0a5;
    /* Dunklerer Hintergrund beim Hover-Effekt */
  }

  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 20px;
    align-items: center;
  }

  @media (max-width: 932px) {
    body {
      justify-content: unset;
    }
  }

  @media (max-height: 932px) {
    body {
      justify-content: unset;
    }
  }

  .container {
    background-color: white;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    margin: 40px 0;
    transition: all 0.5s ease;
    /* Animate size change */
    display: flex;
    flex-direction: column;
    /* align-content: center; */
    justify-content: center;
    align-items: center;
  }

  .step {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .step.active {
    display: block;
    opacity: 1;
  }

  #review p {
    word-wrap: break-word;
    word-break: break-all;
  }

  .navigation {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
  }

  .navigation button {
    background-color: #1e73be;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }

  .navigation button:hover {
    background-color: #155a8a;
  }

  .progress {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .progress span {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 10px;
    transition: all 0.3s;
    letter-spacing: 1px;
    min-width: 25px;
  }

  .progress .active {
    width: auto;
    height: auto;
    padding: 5px 20px;
    background-color: #1e73be;
    color: white;
    border-radius: 20px;
    font-weight: bold;
  }

  label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
  }

  input[type="text"], input[type="submit"], input[type="password"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
  }

  textarea {
    resize: vertical;
    /* Allow vertical resize */
    min-height: 100px;
    /* Minimum height for the textarea */
    max-height: 300px;
    /* Maximum height for the textarea */
  }

  input.invalid, textarea.invalid {
    border: 3px solid #f00;
  }

  input[type="submit"] {
    background-color: #1e73be;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
  }

  input[type="submit"]:hover {
    background-color: #155a8a;
  }

  @media (max-width: 600px) {
    .container {
      padding: 20px;
    }
  }
