.form {
	text-align: center;
	font-size: 0;
}

.form ul {
	margin: 40px 0 0;
	display: inline-block;
	text-align: left;
}

.form ul li {
	margin-bottom: 25px;
}

.form label {
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	color: #252525;
	width: 150px;
	text-align: right;
	margin-right: 50px;
}
.form label span{
	color: red;
}
.form .inputtext,
.form select {
	vertical-align: middle;
	width: 322px;
	height: 42px;
	line-height: 40px;
	border: 1px solid #d2d2d2;
	text-indent: 5px;
}

.form textarea.inputtext {
	height: 160px;
	line-height: 40px;
	overflow: auto;
}

.form .inputtext.md {
	width: 378px;
}

.form .inputtext.lg {
	width: 612px;
}

.form .submit {
	display: inline-block;
	width: 145px;
	height: 60px;
	font-size: 25px;
	color: #fdf9f9;
	border-radius: 15px;
	background: #00bd0b;
	text-align: center;
	margin-top: 40px;
	cursor: pointer;
}

.form .submit:hover {
	opacity: 0.8;
}

.form .reset {
	display: inline-block;
	width: 145px;
	height: 60px;
	font-size: 25px;
	color: #fdf9f9;
	border-radius: 15px;
	background: #b5b5b5;
	text-align: center;
	margin-left: 15px;
	margin-top: 40px;
	cursor: pointer;
}

.form .reset:hover {
	opacity: 0.8;
}

@media only screen and (max-width:960px ) {
	.form .inputtext.lg {
     width: 322px; 
}
}

@media only screen and (max-width:640px ){
	.form label {
    font-size: 15px;
    width: auto;
}
.form .inputtext, .form select,.form .inputtext.lg {
    width: 250px;
    }
    .form ul {
    margin: 0;
    }
    .form .submit ,.form .reset{
    width: 105px;
    height: 40px;
    font-size: 20px;
    margin-top: 30px;
}
}