Remove the red default border from focused inputs

Google Chrome adds per default a red border around an input for focus-visible. To remove it, just add the next CSS to your styles.

input:focus-visible {
  outline: none;
}