@keyframes blinker-animation {
  0% {
      outline: 4px solid #ed7100 !important;
      box-shadow: 0 0 12px #ed7100 !important;
  }
  50% {
      outline: 4px solid transparent !important;
      box-shadow: none !important;
  }
  100% {
      outline: 4px solid #ed7100 !important;
      box-shadow: 0 0 12px #ed7100 !important;
  }
}

/*
Make the selector even more specific by including the form's ID (#wpforms-865)
to ensure it has the highest priority and is not overridden.
*/
div#wpforms-865 div.wpforms-field.wpforms-blinker-target {
  animation: blinker-animation 1.2s infinite !important;
  border-radius: 5px; /* Add a slight radius for better appearance */
  transition: outline 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
}

