If you’re using the WP Search Block, you can add the placeholder to the block itself.
In terms of design, here are a couple of CSS you can try adding through Additional CSS:
input[type="search"] {
border: solid 3px #0000ff;
border-radius: 20px;
color: #0000ff;
}
input[type="search"]::placeholder{
color: #0000ff;
}
You may modify theme as well to your preference.