After creating a login form using the form_for helper, I find the button styling to be unattractive.
https://i.sstatic.net/PGoGk.png
I would like the button style to be similar to this.
https://i.sstatic.net/xjt25.png
Is there a way to customize the submit button in form_for?
_form.html
Log In
<%= form_tag '/authenticate' do %>
<div class="email">
<%= label_tag :email %><br />
<%= text_field_tag :email, params[:email] %>
</div>
<div class="password">
<%= label_tag :password %><br />
<%= password_field_tag :password %>
</div>
<%= submit_tag "Log In" %>
<% end %>