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