how to change the outline color of an input when it is selected in css code example
Example: change input border color when selected
input:focus {
outline: none;
border: 1px solid red;
}
input:focus {
outline: none;
border: 1px solid red;
}