/************ Generic styling for GFT forms [form class = gft-form] *************/

/* Form styling */
form.gft-form {
	width: 100%;
	 /* border: 1px solid #ccc;                     border for testing */
	margin: 0 auto;
}

/* Field styling */
.gft-form .ginput_container input, select {			
	background-color: #f7f7f7 !important;       /* input field backcolor and height */ 
        height: 36px;
}

.gft-form label.gfield_label {			
	font-size: 14px !important;                 /* label font size */ 
}

/* Submit button styling */
.gft-form .gform_footer input[type=submit] {
	width:              150px !important;
	background-color:   #DF7125 !important;
        border-radius:      10px;
        font-size:          14px;
}

/* Input fields for phones */
@media only screen and (max-width: 600px) {
    .gft-form .ginput_container input, select {			
            width: 280px !important;
    }
}

/* Input fields for tablets */
@media only screen and (max-width: 1000px) and (min-width: 600px) {
    .gft-form .ginput_container input, select {			
            width: 250px !important;
    }
}
