#consentFormContainer {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 20px;
    border-radius: 16px;
  }
  
  #consentFormContainer .form-label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 6px;
  }
  
  #consentFormContainer .form-control,
  #consentFormContainer .form-check-input,
  #consentFormContainer select {
    background-color: #2b2b2b;
    border: 1px solid #444;
    color: #00B792;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  #consentFormContainer .form-control:focus,
  #consentFormContainer select:focus {
    outline: none;
    border-color: #00B792;
    box-shadow: 0 0 5px #00ffe0;
    background-color: #333;
    color: #00B792;
  }
  
  #consentFormContainer .form-check-input:checked {
    background-color: #00B792;
    border-color: #00B792;
  }
  
  #consentFormContainer .form-check-label {
    margin-left: 8px;
    color: #ddd;
  }
  
  #consentFormContainer .btn-success {
    background-color: #00B792;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.2s ease;
  }
  
  #consentFormContainer .btn-success:hover {
    background-color: #06846b;
  }
  
  #consentFormContainer .btn-secondary {
    background-color: #444;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
  }
  
  #consentFormContainer input[type="radio"] + label {
    color: #ccc;
  }
  
  #consentFormContainer #signatureCanvas {
    background-color: #2b2b2b;
    border-radius: 8px;
  }
  
  #consentFormContainer a {
    color: #00B792;
    text-decoration: underline;
  }
 /* Nur Links im Formular */
#consentFormContainer a {
  color: #00B792;
  text-decoration: underline;
} 
  @media (max-width: 767px) {
    #consentFormContainer .d-flex.flex-md-row {
      flex-direction: column !important;
    }
  }
  #consentFormContainer input,
#consentFormContainer select,
#consentFormContainer textarea {
  font-size: 16px !important;
  transform: none !important;
  zoom: 1 !important;
  box-sizing: border-box;
}

