I want to customize my website's search bar by changing the background color when it is hovered over. Currently, the search bar has two main elements: the text box and the submit button. I have successfully programmed the text box element to change to a lighter shade when hovered over. However, I also want the submit button background color to change so that the entire search bar appears as one cohesive element. Additionally, I would like both elements to change background colors when the user hovers over the submit button, creating a consistent effect. To see an example of what I mean, please visit my website.
Here is the link ().
Here is a Fiddle (http://jsfiddle.net/d37sN/1/).
HTML
<div id="SearchContainer">
<div id="sb-search" class="sb-search">
<form>
<input class="sb-search-input" placeholder="Enter your search term..." type="search" value="" name="search" id="search">
<input class="sb-search-submit" type="submit" value=""> <span class="sb-icon-search"></span>
</form>
</div>
</div>