 .register-modal {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: #fff;
     padding: 1em;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     width: 400px;
     max-height: 90vh;
     /* Beschränkt die Höhe auf 90% des Viewports */
     border-radius: 8px;
     overflow-y: auto;
     /* Ermöglicht vertikales Scrollen */
     overflow-x: hidden;
     /* Verhindert horizontales Scrollen */
 }

 .register-modal h2 {
     margin: 0;
 }

 .register-modal .close {
     position: absolute;
     top: 10px;
     right: 10px;
     font-size: 1.5em;
     cursor: pointer;
 }

 .register-modal form {
     display: flex;
     flex-direction: column;
 }

 .register-modal form .form-group {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 0em;
 }

 .register-modal form label {
     width: 30%;
     margin-right: 1em;
     color: #333;
     font-weight: bold;
     text-align: right;
 }

 .register-modal form input {
     width: 65%;
     padding: 0.25em;
     border: 1px solid #ccc;
     border-radius: 4px;
 }



 .register-modal form button {
     padding: 0.25em;
     margin-top: 1em;
     border: none;
     border-radius: 4px;
     background: #333;
     color: #fff;
     cursor: pointer;
 }

 .register-modal form button:hover {
     background: #555;
 }

 /* Ausnahme für Tel-Input-Felder */
 .register-modal form input[type="tel"] {
     width: auto;
     /* Erlaube intl-tel-input, die Breite zu kontrollieren */
     padding: 0;
     /* Entferne Padding für saubere Darstellung */
     border: none;
     /* Kein individueller Rahmen */
     border-radius: 0;
     /* Entferne abgerundete Ecken */
 }

 /* Styling für den übergeordneten Container intl-tel-input */
 .register-modal form .intl-tel-input {
     width: 65%;
     border: 1px solid #ccc;
     border-radius: 4px;
     padding: 0.2em;
     box-sizing: border-box;
     /* Sicherstellen, dass Padding in der Breite enthalten ist */
 }

 /* Fehlerhafter Zustand */
 .register-modal form .intl-tel-input.error {
     border-color: red;
 }


 .verification-modal {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: yellow;
     padding: 1em;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     width: 400px;
     border-radius: 8px;
 }

 .verification-modal h2 {
     margin: 0;
 }

 .verification-modal .close {
     position: absolute;
     top: 10px;
     right: 10px;
     font-size: 1.5em;
     cursor: pointer;
 }

 .verification-modal form {
     display: flex;
     flex-direction: column;
 }

 .verification-modal form .form-group {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1em;
 }

 .verification-modal form label {
     width: 30%;
     margin-right: 1em;
     color: #333;
     font-weight: bold;
     text-align: right;
 }

 .verification-modal form input {
     width: 65%;
     padding: 0.25em;
     border: 1px solid #ccc;
     border-radius: 4px;
 }

 .verification-modal form button {
     padding: 0.5em;
     margin-top: 1em;
     border: none;
     border-radius: 4px;
     background: #333;
     color: #fff;
     cursor: pointer;
 }

 .verification-modal form button:hover {
     background: #555;
 }

 #error-message {
     color: red;
     text-align: center;
     margin-top: 1em;
 }


 .iti__dropdown {
     z-index: 10000;
     /* Sehr hoher Z-Index */
 }


 .intl-tel-input {
     width: 80%;
     /* Gleiche Breite wie das Input-Feld */
     border: 1px solid #ccc;
     /* Standard-Rahmen */
     border-radius: 4px;
     /* Abgerundete Ecken */
     padding: 0.25em;
     /* Gleiche Innenabstände wie das Input-Feld */
     display: flex;
     align-items: center;
     box-sizing: border-box;
 }

 .intl-tel-input.error {
     border-color: red;
     /* Fehlerhafter Zustand */
 }

 .intl-tel-input.success {
     border-color: green;
     /* Erfolgreicher Zustand */
 }



 .register-modal form input,
 .register-modal form select {
     width: 65%;
     /* Einheitliche Breite für alle Felder */
     padding: 0.5em;
     border: 1px solid #ccc;
     border-radius: 4px;
     box-sizing: border-box;
     /* Berücksichtigt Padding in der Breite */
 }


 /* Checkbox-Gruppe */
 .checkboxgroup {
     display: flex;
     align-items: flex-start;
     /* Label oben ausrichten */
     margin-bottom: 1em;
     font-size: 14px;
     color: #333;
 }

 /* Checkbox */
 .checkboxgroup input[type="checkbox"] {
     margin-right: 0.5em;
     /* Abstand zwischen Checkbox und Text */
     width: 18px;
     height: 18px;
     cursor: pointer;
     appearance: none;
     border: 1px solid #ccc;
     border-radius: 3px;
     background-color: #fff;
     display: inline-block;
     position: relative;
 }

 /* Haken bei Aktivierung */
 .checkboxgroup input[type="checkbox"]:checked {
     background-color: #007bff;
     border-color: #007bff;
 }

 .checkboxgroup input[type="checkbox"]:checked::after {
     content: "✔";
     font-size: 12px;
     color: #fff;
     position: absolute;
     top: 2px;
     left: 3px;
 }

 /* Fokuszustand */
 .checkboxgroup input[type="checkbox"]:focus {
     outline: 2px solid #007bff;
     outline-offset: 2px;
 }

 /* Label Styling */
 .checkboxgroup label {
     flex: 1;
     /* Label nimmt den verfügbaren Platz ein */
     line-height: 1.5;
     /* Zeilenhöhe für sauberes Layout */
     cursor: pointer;
     /* Klickbar machen */
     word-wrap: break-word;
     /* Zeilenumbruch für lange Texte */
     color: #333;
 }