Heyho 🙂
I noticed, that the right border of the search field on the 404 Page and on the page that appears if no search results were found, is missing. I guess this was made with the search submit button in mind, which is on the right side of the Search field in the main menu.
A quick solution to this is to change a line in the style.css in the following block (line ~760):
input[type="search"].search-field {
Change this line in the block
border-width: 1px 0 1px 1px;
to this one:
border-width: 1px 1px 1px 1px;
Now the search field has a right border on the 404 and the “No search results” page.
A better solution would be to add the search submit button on the search field of those two pages, but I have not figured out, how to do this yet.