JSFiddle - React, Tailwind, and code Playground
HTML
<form method="post">{% csrf_token %} {{ form.as_p }}
<div class="buttonHolder">
<button type="submit">Submit</button>
<input class="button2" type="submit" value="Click Me" />
</div>
</form>
CSS
form {
text-align : center;
}
.button2 {
display: block;
height: 100px;
width: 300px;
text-align: center;
margin: 0 auto;
}