I have tried to change the placeholder color of the input element when you hover it.
add :hover then ::placeholder pseudoelement to change its color:
:hover
::placeholder
input:hover::placeholder { color: red; }