The label .inputLabel selector is floated right. This may have been changed for some other page where it was useful, but here it is a problem.
Find in your stylesheet
PHP Code:
LABEL.inputLabel {
width: 9em;
float: right; // <--- change to left
}
If you find that some other input labels look wrong now, put that back as it was and add a new declaration that will apply only to this page:
PHP Code:
#loginDefault LABEL.inputLabel {
width: 9em;
float: left;
}
There may be other factors at work; I haven't investigated further and have to run now.
The labels may have been supposed to float right against the input fields, and those may have been changed (to absolute position??) so they are no longer anchors.