Both answers posted are valid and work so I upvoted them. Here is another method i did not see posted.
You can center your form by setting it to display:inline-block and center it within the .center container using text-align:center. This way the form will center regardless of width within that container:
CSS
.center {
text-align:center;
}
.center form {
display:inline-block;
}