.zammad-form-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  z-index: 999;
  overflow: auto;
  overscroll-behavior: contain;
}

.zammad-form-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background-color: gray;
}

.zammad-form-modal-body {
  text-align: left;
  background: white;
  border-radius: 5px;
  padding: 24px 24px 22px;
  width: 90%;
  max-width: 26em;
  box-sizing: border-box;
  position: relative;
  font-family: "Montserrat";
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
  color: #949494;
  margin: 0 auto;
}

.zammad-form {
  width: 100%;
}

element.style {
}
.zammad-form-group {
  margin-bottom: 15px;
}

.zammad-form-control {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-color: gray;
  font-family: "Montserrat";
  border-radius: 3px;
  border-width: 2px;
}

/* Styling für das Feedback-Formular */
#zammad-feedback-form {
  background-color: #f2f2f2;
  border: none;
  border-radius: 3px;
  color: #3E4857;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat";
  cursor: pointer;
}

.zammad-form-group label {
  color: #30363D;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}



