
.erfolgreichgesendet {
  background-color: #e2fac2;
  border: 1px solid #cbe1ba;
  padding: 15px;
  border-radius: 4px;
}

.friendly-captcha-container[data-v-2e0b5b83] {
  margin-bottom: 1.5rem;
}
.frc-captcha[data-v-2e0b5b83] {
  min-height: 65px;
}

.ims-form {
  max-width: 800px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-control {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: inherit;
}
.required-label::after {
  content: '*';
  color: red;
  margin-left: 2px;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
fieldset {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
legend {
  font-weight: bold;
  padding: 0 0.5rem;
}
.checkbox-group {
  margin: 1rem 0;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: normal;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}
.error-message {
  color: #990000;
  font-size: 0.85em;
  margin-top: 0.25rem;
}
.form-details {
  font-size: 0.85em;
  color: #666;
  margin-top: 0.25rem;
}
.form-submit-container {
  margin-top: 2rem;
}
.submit-button {
  background-color: var(--color-highlight, #0066cc);
  color: white;
  font-size: 1em;
  border-radius: 0.75rem;
  padding: 0.6em 1.5em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.submit-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}
.loader {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #FFF;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin: 0 24px;
}
@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.form-intro {
  margin-bottom: 1.5rem;
}
.form-dataprotection {
  font-size: 0.85em;
  margin-top: 2rem;
}

/*fügt eine rotes Sternchen den Requiered Attributen hinzu*/
.input-label::after {
  content: '*';
  color: red;
  margin-left: 2px;
}

/* Notes: Schrift formatieren für die Labels im Forms-Object*/
form label {
  font-weight: 700;
}

/* Notes: für die Container mit Labels und Inputs */
.form-container {
  padding: 10px 0;
}

/* Notes: Der Container mit Friendly Captcha und dem Senden Button*/
.form-submit-container {
  padding: 10px 0 0 0;
}

/* gibt die Größe des Textes für den Datenschutz an*/
.form-dataprotection {
  font-size: var(--font-size-small);
}

/* Notes: für Text unter einem Inputfeld */
.form-details {
  font-size: 0.85em;
  /* margin: 5px 0 0 0; */
}

/* Notes: wird von friendly Captcha automatisch genutzt, es wird nur der Margin hinzugefügt*/
.frc-captcha {
  margin-bottom: 1em !important;
}

/*für den button <input type=submit>*/
form input[type=submit] {
  background-color: var(--color-highlight);
  font-size: 1em;
  border-radius: calc(11 / var(--font-size-base) * 1rem);
  padding: 0.6em 0.75em 0.75em;
  text-decoration: none;
  transition: 0.75s;
}

/*
form input:required:invalid {
  background-color: ivory;
  border: none;
  outline: 2px solid red;
  border-radius: 5px;
}

form input:valid {
  background-color: ivory;
  border: none;
  outline: 2px solid green;
  border-radius: 5px;
}
*/
.invalid {
  color: #990000;
}
.loader {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #FFF;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin: 0px 24px;
}
@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
