body {margin:0;}
/* form style */
.form-style{
	max-width: 100%;
	padding: 20px 0;
	margin:0;
	background: #FFFFFF;
	font-size:12px;
}
.form-style-heading{
    font-size: 13px;
    padding:20px 40px;
	background-color:#f6f6f6;
}
.form-style label{
    display: block;
    margin: 0px 0px 25px 0px;
}
.form-style label > span{
    width: 110px;
    font-weight: normal;
    float: left;
    padding-top: 8px;
    padding-left:10px;
	font-size:12px;
	text-align:left;
}
.form-style span.required{
    color:red;
}
.form-style .tel-number-field{
    width: 40px;
    text-align: center;
}
.form-style  .long{
    width: 120px;
}
.form-style input.input-field{
    width: 80%;
   
}

.form-style input.input-field,
.form-style .tel-number-field,
.form-style .textarea-field,
 .form-style .select-field{
    -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;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    padding: 7px;
    outline: none;
	font: 14px 'Droid Arabic Kufi', arial, sans-serif;
}
.form-style .input-field:focus,
.form-style .tel-number-field:focus,
.form-style .textarea-field:focus,  
.form-style .select-field:focus{
    border: 1px solid #0C0;
}
.form-style .textarea-field{
    height:100px;
    width: 80%;
}
.form-style input[type="button"],
.form-style input[type="submit"] {
    color:#fff;
	padding:10px 20px;
	background-color:#05bfbc;
	text-decoration:none;
	border: 1px solid #05bfbc;
    display: inline-block;
    cursor: pointer;
	font-weight:300;
	-webkit-border-radius: .3em; 
	-moz-border-radius: .3em;
	border-radius: .3em;
	max-width:100px;
	font-size:16px;
	text-align:center;
	margin-top:20px;
	
	transition:all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
}
.form-style input[type="button"]:hover,
.form-style input[type="submit"]:hover {
   color:#fff; 
	background-color:#03959e;
	border: 1px solid #03959e;
	text-decoration:none;
}
.form-style .success{
	background: #D8FFC0;
	padding: 5px 10px 5px 10px;
	margin: 0px 0px 5px 0px;
	border: none;
	font-weight: bold;
	color: #2E6800;
	border-right: 3px solid #2E6800;
}
.form-style .error {
	background: #FFE8E8;
	padding: 5px 10px 5px 10px;
	margin: 0px 0px 5px 0px;
	border: none;
	font-weight: bold;
	color: #FF0000;
	border-left: 3px solid #FF0000;
}