/* Form wrapper same color as footer */
#hubspotFooterFormWrapper {
  background-color: #011240 !important;
  padding: 25px 20px;
  border-radius: 8px;
  max-width: 400px;  /* keeps it tidy */
  margin: 0 auto;
}

/* Make sure HubSpot doesn’t add its own background */
#hubspotFooterForm form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Labels in white */
#hubspotFooterFormWrapper label {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 500;
}

/* Inputs white with dark text */
#hubspotFooterFormWrapper .hs-input,
#hubspotFooterFormWrapper input,
#hubspotFooterFormWrapper textarea,
#hubspotFooterFormWrapper select {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  padding: 10px !important;
  width: 100% !important;
  margin-bottom: 14px !important;
  box-sizing: border-box;
}

/* Submit button */
#hubspotFooterFormWrapper input[type="submit"] {
  background: #00abe8 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 12px 20px !important;
  width: 100% !important;
  font-weight: 600 !important;
  cursor: pointer;
}
#hubspotFooterFormWrapper input[type="submit"]:hover {
  background: #0095c8 !important;
}