Change text colour of the text in the search box

Hello,

On our search box, the text is Gray, and move over changes this to black. is there a way to change this so its just black all the time.

I have tried adding code to the base.css.liquid asset and a few other css places and no joy

.search__input.field__input {
    color: #000000 !important;
}

We using Morata Theme from Theme Forest

Hi @Alcohol-Free10 ,

May I suggest code below:

.search__input.field__input::placeholder, 
.frm_search_input .search_header__input::placeholder {
    color: #000000 !important;
}