/* form style */
.form-style{
	max-width: 90%;
	overflow: auto;
	padding: 40px 30px 40px 40px;
	font: 13px Arial, Helvetica, sans-serif;
	margin: 20px auto;
	background: #FFFFFF;
	border-radius: 5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
	
}

.form-style-heading{
    font-weight: bold;
    font-style: italic;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
    font-size: 15px;
    padding-bottom: 3px;
}
.form-style label{
    display: block;
    margin: 0px 0px 15px 0px;
}
.form-style label > span{
    
    font-weight: bold;
 
    padding-top: 8px;
    padding-right: 5px;
}
.form-style span.required{
    color:red;
}
.form-style input[name=phone1]{
    width: 15%!important;
    text-align: center;
}
.form-style  input[name=phone2]{
    width: 100%!important;
}
.form-style input[type=text], input[type=email]{
    width: 100%;
   
}

.form-style input[type=text], input[type=email],
.form-style input[type=file],
.form-style textarea,
 .form-style select{
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out; 
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #C2C2C2;
    box-shadow: 1px 1px 4px #EBEBEB;
    -moz-box-shadow: 1px 1px 4px #EBEBEB;
    -webkit-box-shadow: 1px 1px 4px #EBEBEB;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    padding: 7px;
    outline: none;
	width: 100%;
}
.form-style input[type=text]:focus, input[type=email]:focus, .form-style input[type=file]:focus, .form-style textarea:focus, .form-style select:focus{
    border: 1px solid #0C0;
}
.form-style textarea{
    height:100px;
    width: 100%;
}

.form-style .success{
	background: #D8FFC0;
	padding: 8px 13px 8px 13px;
	margin: 0px 0px 5px 0px;
	border: none;
	font-weight: bold;
	color: #2E6800;
	font-size:16px;
	text-align: center;
	border-left: 3px solid #2E6800;
}
.form-style .error {
	background: #FFE8E8;
	padding: 8px 13px 8px 13px;
	margin: 0px 0px 5px 0px;
	border: none;
	font-weight: bold;
	color: #FF0000;
	text-align: center;
	font-size:16px;
	border-left: 3px solid #FF0000;
}
.flt{
	float: left;
	padding-right: 15px;
}
.sp{
	margin-top:18px;
}