
/* 

Form Start

*/

.form-container {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 70%;
  margin: auto;
  text-align: left;
}

.toggle-buttons {
  display: flex;
}

.toggle-buttons button {
  flex: 1;
  padding: 20px;
  font-weight: bold;
  background: #eee;
  cursor: pointer;
  border: none;
  font-size: large;
  color: black;
}
.lifegrouplocation button{
  flex: none;
  width: 100px;
  height: 50px;
    margin-bottom: 20px;

}



.geschlecht-section button{
    flex: none;
  width: 120px;
 font-size: 14px;
     margin-bottom: 20px;

}
.familienstand-section button{
    flex: none;
  width: 120px;
 font-size: 14px;
     margin-bottom: 20px;

}


.toggle-buttons button.active {
  background: #000000;
  color: white;
}

.option-description{
    padding: 10px;
    font-size: 14px;
    color: white;
    background-color: #000000;
    height: 100px;
    border: #000000 1px solid;
    display: flex;
    align-items: center;
}

label {
  display: block;
  margin: 10px 0 5px;
}

input, select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  white-space: nowrap; /* verhindert Zeilenumbruch */
    font-size: 14px;
}

.checkbox-row input{
width: auto;
  margin-right: 10px;
}

.labeltelnumber{
      display: block;
  margin: 10px 0 5px;
  width: 100%;
  white-space: wrap;

}

.hidden {
  display: none;
}

.radio-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.submit-button {
  width: 100%;
  padding: 10px;
  font-weight: bold;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-button:hover {
  background: #218838;
}

.toggle-buttons.small button {
  font-size: 14px;
  padding: 8px;
}



@media (max-width: 960px) {

    .form-container {

        max-width: 100%;
  padding: 0px;

    }
    
}


