
/* Eingabefelder */
body .wpforms-form input,
body .wpforms-form textarea,
body .wpforms-form select {
  background-color: #1e1e1e !important;
  color: #ffffff !important;
  border: 1px solid #444 !important;
  padding: 12px;
  font-size: 1rem;
}

/* Platzhalter */
body .wpforms-form input::placeholder,
body .wpforms-form textarea::placeholder {
  color: #888 !important;
}

/* Labels allgemein */
body .wpforms-form .wpforms-field-label {
  color: #ccc !important;
  font-weight: bold;
}

/* DSGVO-Feld – gezielte Klasse nutzen */
body .wpforms-form .asche-dsgvo label,
body .wpforms-form .asche-dsgvo span {
  color: #ccc !important;
  font-weight: normal;
  line-height: 1.5;
}

/* DSGVO-Link */
body .wpforms-form .asche-dsgvo a {
  color: #9ac1ff !important;
  text-decoration: underline;
}

body .wpforms-form .asche-dsgvo a:hover {
  color: #ffffff !important;
}

/* Button */
body .wpforms-form .wpforms-submit {
  background-color: #444 !important;
  color: #fff !important;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

body .wpforms-form .wpforms-submit:hover {
  background-color: #666 !important;
}

/* Formularbreite & Abstand */
.wpforms-container .wpforms-form {
  margin: 0 auto;
  max-width: 600px;
}

button.wpforms-submit.ascheglanz-button:hover {
  box-shadow: 0 0 12px rgba(255, 80, 80, 0.4),
              0 0 24px rgba(255, 0, 0, 0.35),
              0 0 40px rgba(255, 0, 0, 0.2) !important;
  background-color: #1e1e1e !important;
  transform: translateY(-1px) !important;
}


.wpforms-submit.ascheglanz-button {
  box-shadow: none !important;
}


.ascheglanz-glow-button {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: none;
}

.ascheglanz-glow-button:hover {
  background-color: #1e1e1e;
  color: #fff;
  box-shadow:
    0 0 12px rgba(255, 60, 60, 0.4),
    0 0 24px rgba(255, 0, 0, 0.3),
    0 0 48px rgba(128, 0, 0, 0.2);
  transform: translateY(-1px);
}

