/* 6. FIXED SUBMIT BUTTON (Stronger Hover) */
#nf-form-2-cont .nf-field-submit .ninja-forms-field {
  background-color: #e7818f !important; /* Brand Pink */
  color: #ffffff !important;
  border: 2px solid #e7818f !important;
  border-radius: 50px !important;
  padding: 16px 45px !important;

  font-family: "Open Sans", sans-serif;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: 1rem !important;
  letter-spacing: 1px !important;

  cursor: pointer !important;
  margin-top: 20px;
  width: auto !important;
  display: inline-block !important;

  /* Force transition so you see the change */
  transition: all 0.3s ease !important;
}

/* Hover State - Targeting 'input' specifically to win priority */
#nf-form-2-cont .nf-field-submit input.ninja-forms-field:hover {
  background-color: #6271a3 !important; /* Brand Blue */
  border-color: #6271a3 !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}
