.Kontakt-box-anmeldung {
    flex: 1; /* Sorgt dafür, dass der Container den verfügbaren Platz einnimmt */
    background: radial-gradient(circle, #a3a3a3d2, #2c2c2c);
    border: 2px solid #ffffff;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;  /* Stellt sicher, dass die Inhalte in einer Spalte angeordnet sind */
    justify-content: space-between; /* Verwendet den verfügbaren Platz zwischen den Inhalten */
  }
  
  input {
    padding: 10px;
    margin-top: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 2px;
    font-size: 18px;
  }
  textarea {
    margin-top: 6px;
  }
  
form {
    display: flex;
    flex-direction: column;
}
  
  textarea {
    resize: vertical;
  }
  input.invalid, select.invalid, textarea.invalid {
    border: 2px solid red;
    background-color: #ffe6e6;
  }

  label {
    display: block;
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .checkbox-group-helfer label {
    display: block;
    margin-bottom: 5px;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    border-radius: 4px;
    text-align: center;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
  }
  