You removed float:left from #logo, which caused search bar container to be placed below logo instead of on right side of it. There are 2 ways you can fix that:
1. Put back float:left to #logo
2. Add this to extra.css
Code:
.headerSearchBar #QuickSearch { top: 0; }
Adjust that top value as needed. To center search box set value to -98px