Please check my code. I want Label and input in same line

Please let me know what’s wrong with my code.

https://codepen.io/princecana/pen/NWxPwdK

you have your inputs withwidth: 100%;, and that includes radio and checkboxes
if the input is taking 100% of the width there is no space for the label on the same line

In css file change
.column1{
float:left;
}
.column2{
margin-left:5px;
float:left;
width:70%;
}