.taskforms-container legend {
  color: #63cbc3!important;
  font-size: 1.5rem !important;
  margin-top: 1rem !important;
}

.taskforms-container .message-group {
  margin-top: 1rem !important;
}

.taskforms-container .btn {
  font-weight: 500 !important;
  text-transform: uppercase !important;
  background: #63cbc3!important;
  border-radius: 0 !important;
  border: none !important;
  width: 240px !important;
  font-size: 18px !important;
}

.taskforms-container textarea {
  height: 200px !important;
}

.taskforms-container .form-control {
  width: 100%;
  border: 1px solid #e1e6e8;
  margin: 0;
  padding: 0 10px;
  background-color: #f9fafb !important;
  font-size: 1em;
  height: 44px;
  line-height: 44px;
  color: #000 !important;
  border-radius: 0 !important;
}

.taskforms-container .form-check-label input {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #87486d;
  border-radius: 50% !important;
  display: inline-flex;
  justify-content: center;
  height: 20px;
  width: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  flex-shrink: 0;
  background: #fff;
  vertical-align: middle;
}


/* Innerer Punkt – immer vorhanden, nur sichtbar bei checked */
.taskforms-container .form-check-label input::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.1s ease-in-out;
}

/* Sichtbar, wenn aktiv */
.taskforms-container .form-check-label input:checked::after {
  background: #63cbc3!important;
}

/* Checkboxen (quadratisch, aber gleiche Logik) */
.taskforms-container .form-check-label input[type="checkbox"] {
  border-radius: 4px !important;
}

.taskforms-container .form-check-label input[type="checkbox"]::after {
  height: 10px;
  width: 10px;
  border-radius: 2px;
}

.taskforms-container .form-check-label input[type="checkbox"]:checked::after {
  background: #63cbc3!important;
}

/* Fokus-Styling */
.taskforms-container .form-check-label input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(135, 72, 109, 0.3);
}



/* ------------------------------------------ */

.taskforms-container a {
  color: #63cbc3!important;
  text-decoration: underline;
  background-color: transparent;
}

.taskforms-container .field-required:after,
.taskforms-container .form-check-label:before,
.taskform-container .formio-errors,
.taskforms-container .invalid-feedback {
  display: none !important;
}

.taskforms-container .form-control.is-invalid {
  border-color: #e1e6e8 !important;
  background-image: none !important;
}

.choices[data-type*=select-one]:after {
  right: 24px !important;
  margin-top: 8px !important;
  border-top-color: #63cbc3!important;
}

.taskforms-container .input-group-text {
  background-color: transparent !important;
  border: none !important;
}

.taskforms-container .form-check-label span {
  margin-top: -2px;
  margin-left: 4px;
}

