To remove any highlight of inputs that any browser may apply as default action you can always use outline:none for their css. in your case it’s a button element. so this should work:
button {
outline: none;
}
Although it’s not recommended to remove the CSS outline. as it’s is bad for accessibility. (Thanks Robin Clowers for mentioning this)