change focus color input css code example
Example 1: color background to input boxes on focus
input:focus {
background-color: yellow;
}
Example 2: focus on input change label color
.input-group {
display: flex;
flex-direction: column-reverse;
}
input:focus + label {
color: red;
}