#aspnetForm {
    font-family: helvetica, arial;
}
#aspnetForm .formfieldheader{
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 20px 0 0;

}
#aspnetForm input[type='text'],
#aspnetForm input[type='email']{
    border: none;
    border-top: 3px solid #dbdbdb;
    border-bottom: 3px solid #dbdbdb;
    font-size: 1.6em;
    line-height: 1.6;
    outline: none;
    min-height: 75px;
    width: 100%;
    border-top: none !important;
}

#aspnetForm input[type='text']:focus,
#aspnetForm input[type='email']:focus{
    border-color: #930000;
}

#aspnetForm input[type='submit']{
    margin-top: 16px;
    padding-top: 11px;
    padding-bottom: 3px;
    line-height: 2.56;
    color: #fff;
    background-color: #930000;
    border-color: transparent;
    transition: all 0.14s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    -ms-transition: all 0.2s ease-in-out !important;
    -o-transition: all 0.2s ease-in-out !important;
    -webkit-transition: all 0.2s ease-in-out !important;
    background-color: #930000;
    background-image: -moz-linear-gradient(bottom, #6f0000 55%, #930000 10%);
    background-image: -webkit-linear-gradient(bottom, #6f0000 55%, #930000 10%);
    background-image: linear-gradient(to top, #6f0000 55%, #930000 10%);
    background-size: 100% 200%;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-weight: bolder;
    width: 100%;
    font-size: 16px;
}

#aspnetForm input[type='submit']:hover,
#aspnetForm input[type='submit']:focus{
    background-position: 0% 100%;
    color: #FFF;
    background-color: #600000;
}