Placeholder text color

Hello,
How to change the placeholder text color for an input form-control ?
Thank you

If you give each input an unique ID you can have different colors on the placeholders
like this

#name.form-control::placeholder {
  color: red;
}

If you want the same color on all placeholders

.form-control::placeholder {
  color: red;
}