/* Preserve the original styles. Focus changes the existing border only. */
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: none;
  box-shadow: none;
  border-color: #008cbf !important;
}
/* Existing animations remain intact for visitors without reduced motion. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
