Align “Remember Me” and Check Box in same line (CSS issue with Devise)

I am using Devise with and the checkbox is below the Remember Me. Here is the HTML code on jsfiddle http://jsfiddle.net/icyborg7/8zxyz/This is the standard devise code\[code\] <%= f.input :email %> <%= f.input :password %> <%= f.input :remember_me, :as => :boolean if devise_mapping.rememberable? %> <%= f.button :submit, "Sign In", :class => "btn-info btn" %>\[/code\]This is the HTML output (Pasting it on SO too)\[code\]<div class="control-group boolean optional"><label class="boolean optional control-label" for="user_remember_me">Remember me</label><div class="controls"><input name="user[remember_me]" type="hidden" value="http://stackoverflow.com/questions/15876803/0"><label class="checkbox"><input class="boolean optional" id="user_remember_me" name="user[remember_me]" type="checkbox" value="http://stackoverflow.com/questions/15876803/1"></label></div></div>\[/code\]
 
Top