the attribute placeholder is a small hint in a field (input), to show the expected value, this hint is displayed in the field before the user enters a value.
To change the placeholder of a field is simple, in the CSS put:
input::placeholder{
color: red;
}