/* Zentrierung des Formulars und Layout */
.webform-submission-form {
  max-width: 98%;
  margin: 20px auto; /* Zentriert das Formular */
  padding: 20px;
  background: #f9f9f9; /* Hellgrauer Hintergrund */
  border-radius: 10px; /* Abgerundete Ecken */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatten */
 /* color: #fff; */
}

/* Styling für den Header oder Bilder */
.webform-submission-form img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px; /* Abstand zum restlichen Inhalt */
  display: block;
}

/* Label-Anpassung */
.webform-submission-form label {
  font-weight: 600;
  margin-bottom: 8px;
}

/* Input-Feld */
.webform-submission-form .form-control {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  font-size: 20px;
}

/* Hover- und Fokus-Zustände */
.webform-submission-form .form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Button-Styling */
.webform-submission-form .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  width: 100%; /* Button über die ganze Breite */
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.webform-submission-form .btn-primary:hover {
  background-color: #0056b3;
}

/* Abstände */
.webform-submission-form .form-actions {
  margin-top: 20px;
}


@media (max-width: 768px) {
  .webform-submission-form {
    padding: 15px;
    max-width: 100%;
  }

  .webform-submission-form .btn-primary {
    padding: 8px 15px;
    font-size: 16px;
  }
}