add a new div around the login form code with a class of "wrapper"
<div class="wrapper">
login page code
</div>
the add the following CSS just before the </head> tag:
<style type="text/css">
.wrapper {
margin: 0 auto;
padding: 30px;
width: 500px;
}
</style>