$(document).ready(function() {
   
   // replace the submit row with a styled div and link that submits the form
   $('.form-row.submit').hide()
   $('form').after('<div class="outer"><div class="inner"><p><a href="#">Log in</a></p></div></div>')
   $($('form + div'), 'a').click(function() {
      $('form').submit();
   });
});
