In general this kind of scenario is a good candidate for the Template pattern. Combine that with the Page Object pattern since you are using Webdriver and you should be able to minimize your duplicated code.
The idea is that you would create some kind of helper object that performs commonly used steps. Most of the steps are the same across browsers. But since your UI changes depending on the browser, certain actions will require custom steps. So you will have concrete implementations that inherit most of the steps from the abstract base but implement specific functionality where the UI differences make it impossible to reuse the same base code.
For example, on the page where you have your two input boxes, your firefox implementation of the required action would have two clicks while your Chrome implementation will just have one. The login and navigation steps will (theoretically) be the same and can be shared via the base class.
You configure your helper objects (page factory, etc) in your Testing framework's SetUp method. Your tests call the appropriate methods on the helper objects to perform the actions and then you verify the results.
References: