For all default inputs, the text you fill starts on the left. How do you make it start on the right?
Try this in your CSS:
input { text-align: right; }
To align the text in the center:
input { text-align: center; }
But, it should be left-aligned, as that is the default - and appears to be the most user friendly.