Here is the link to my survey form.
Thank you! I fixed it, I had the margin-right missing. I also changed the background color. 
It’s good now, I have another notice, sorry 
your <textarea> element appears small specially on small screens

You can fix this by using “rows & cols” attributes.
You can read more about them here
using them making you able to decide the visible part of the textarea
I’d tried using them but they’re not working. Maybe i’m overwriting it by applying the rightTab CSS. The textarea is inside a div with that class, that helps me align all inputs on the right side.
I think it’s overwritten by the class="input-field" in the <textarea> element.
as when you remove it, It responds to rows and cols attribute…
I think you can try to make the height in css of .input-field of “auto” value.
.input-field{
height: auto;
width: 100%;
padding: 5px;
margin: 10px;
border: 1px solid:#ccc;
border-radius: 5px;
}
Genius! It worked.
Thanks! 
you’re welcome 
