I want the effect of coloring label on input focus. Like when i focus input box, the label color should change to blue. But this is not working and I want to know why as well as how to fix this?
.test-label{
color: purple;
}
.test-box:focus .test-label{
color: blue !important;
}
<form>
<label class = "test-label">Label</label>
<br />
<input type = "text" class = "test-box">
</form>