I've tried for several hours to find a solution to what is likely a simple problem. I'm having some issues getting an EditField to align the input text to the right. I'm looking to have the EditField label aligned to the left side of the screen and the input text on the right side similar to what the DateField looks like. I've tried several style combinations, but am stuck

Below is some of my code that I've tried. Any suggestions are much appreciated.
Code:
BasicEditField comp = new BasicEditField("Rate", "", 7, BasicEditField.USE_ALL_WIDTH | BasicEditField.FILTER_REAL_NUMERIC | BasicEditField.FIELD_RIGHT);
DateField date = new DateField("Date", System.currentTimeMillis(), DateField.DATE);