form{
width:420px;
margin:0 auto;
font-family: Helvetica,Arial,serif;
}
.formHeader{
margin-top: 35px;
}
.formHeader h2{
font-size: 24px;
line-height: 24px;
font-weight: normal;
color: ;
text-align: center;
}
.formHeader p{
text-align: center;
}
p{
font-size: 15px;
line-height: 15px;
color: ;
}
.theForm{
margin-top: 55px;
}
.row{
margin-top: 20px;
}
.row p,.row input{
display:inline-block;
}
.row p{
width:132px;
text-align: left;
}
.row input{
width:278px;
font-size: 15px;
color: ;
padding:10px 12px;
background: ;
border:1px solid ;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
outline: none;
font-family: Helvetica,Arial,serif;
}
.row input:focus{
border:1px solid ;
}
.row input.btnSub{
margin-left: 136px;
width:auto !important;
font-size: 15px;
padding:10px 12px;
color: ;
border:1px solid ;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: ; /* fallback */
background: -moz-linear-gradient(top, 0%, 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, ), color-stop(100%, )); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, 0%, 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, 0%, 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, 0%, 100%); /* IE10+ */
background: linear-gradient(to bottom, 0%, 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=' ', endColorstr=' ',GradientType=0 );
-moz-box-shadow: inset 0px 1px 0px 0px ;
-webkit-box-shadow: inset 0px 1px 0px 0px ;
box-shadow: inset 0px 1px 0px 0px ;
cursor:pointer;
}
Subscribe to our newsletter
The only info we absolutely need is your email
E-mail
function isValidEmail(){
// small email validation
var filter = /^([a-zA-Z0-9_\.\-\+\_])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
var email=document.getElementById("emailInput");
if (!filter.test(email.value)) {
email.focus;
email.style.border="1px solid red";
return false;
}else{
email.style.border="1px solid ";
return true;
}
}