I am new to CSS but I am trying to create this layout:

I have tried to have a wack at this, and here is the code I have:
Now, I know this is basic, but what am I doing wrong?
P.s I want this to cope with a field of any height (i.e very tall)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Add
.fieldwrapper{display:inline-block}As div is block element, it is getting displayed in the next row so make it inline block then it flows in the same row.
Demo here
In simple form you can remove div around input and write like below
demo http://jsfiddle.net/cskQ8/11/