/* — GLOBAL FORM STYLES — */
body, html {
  font-family: Arial, sans-serif;
  color: #222;
  background-color: #fff;
}

/* — MAIN HEADING — */
form .neon-form-title {
  font-size: 2.25em;
  font-weight: bold;
  color: #005bbb; /* Primary accent blue */
  margin-bottom: 1rem;
}

/* — SECTION HEADERS — */
form .neon-section-header {
  font-size: 1.4em;
  font-weight: 600;
  color: #005bbb;
  border-bottom: 2px solid #e6e6e6;
  padding-bottom: 0.5rem;
  margin-top: 1.5rem;
}

/* — INPUT FIELDS — */
input[type="text"],
input[type="email"],
select,
textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.75rem;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

/* — FOCUS STATE — */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #005bbb;
  box-shadow: 0 0 3px rgba(0, 91, 187, 0.3);
}

/* — DONATION AMOUNT BUTTONS — */
.neon-amount-button {
  background-color: #005bbb;
  color: #fff;
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: 1em;
  border-radius: 4px;
  margin: 0.25rem 0.5rem 0.5rem 0;
  cursor: pointer;
}

.neon-amount-button:hover {
  background-color: #004499;
}

/* — PRIMARY ACTION BUTTON — */
.neon-submit-button {
  background-color: #005bbb;
  color: #fff;
  font-weight: bold;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.neon-submit-button:hover {
  background-color: #003f7f;
}

/* — HELP TEXT & ERROR MESSAGES — */
.form-help-text,
.error-message {
  font-size: 0.9em;
  color: #6b6b6b;
}

.error-message {
  color: #c00;
}

/* — CHECKBOX / RADIO LABELS — */
input[type="checkbox"] + label,
input[type="radio"] + label {
  font-size: 0.95em;
}

/* — MOBILE RESPONSIVE — */
@media (max-width: 600px) {
  .neon-amount-button {
    padding: 0.6rem 1rem;
    font-size: 0.95em;
  }
  .neon-submit-button {
    width: 100%;
    font-size: 1em;
  }
}

.footer-root {
    display:none;   
}
