﻿.form-module {
    position: relative;
    background: #ffffff;
    opacity: 0.99;
    max-width: 325px;
    width: 95%;
    border: 1px solid #0F2027;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}
    .form-module .form {
        display: block;
        padding-top: 40px; /*40px*/
        padding-left: 30px; /*40px*/
        padding-right: 30px; /*40px*/
        padding-bottom: 20px; /*10px*/
    }
.havingtrouble a {
    color: #009FDA !important;
}
.validationmessage {
    text-align: center;
    padding-bottom: 5px;
}

@media (max-width:480px) {
    /* smartphones, Android phones, landscape iPhone */
    body {
        margin-top: 40px !important;
    }
    .form-module .form {
        padding-left: 20px; /*40px*/
        padding-right: 20px; /*40px*/
    }
}

input, button, select, optgroup, textarea {
    margin: 0;
    font-family: inherit;
    font-size: 10.5pt;
    line-height: inherit;
}

.form-module h2 {
    margin: 0 0 5px;
    font-size: 16pt;
    line-height: 1;
}

.titlesec {
    margin-bottom: 5px;
}

.form-module input {
    outline: none;
    display: block;
    width: 100%;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 0.5px solid #d9d9d9;
    margin: 0 0 8px; /* Formally: margin: 0 0 15px;*/
    padding: 10px 15px;
    box-sizing: border-box;
    font-weight: 400;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 0px !important;
    /* Remove ugly inner shadow on input*/
    -webkit-appearance: none;
}

    .form-module input:focus {
        border: 1px solid #33b5e5;
        color: #333333;
    }

.form-module button {
    cursor: pointer;
    background: #009FDA; /*#33b5e5*/
    width: 100%;
    border: 0;
    padding: 10px 15px;
    color: #ffffff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    /*border-radius: 4px;*/
    margin-top: 3px;
}

    .form-module button:hover {
        background: #178ab4;
    }

.form-module .validsummary {
    background: transparent; /*#f2f2f2;*/
    width: 100%;
    /*padding: 15px 40px;*/
    padding-top: 10px;
    box-sizing: border-box;
    color: #666666;
    font-size: 14px;
    text-align: center;
}

    .form-module .validsummary a {
        color: #333333;
        text-decoration: none;
    }

.field-validation-error {
    color: #ff0000;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border-bottom: 1px solid #FF0000 !important;
    background-color: white !important;
    /*background-color: #f2dede;*/
}

.validation-summary-errors {
    font-weight: normal;
    color: #ff0000;
}

.validation-summary-valid {
    display: none;
}

.validation-summary-errors > ul {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    font-size: 10pt;
}

    .validation-summary-errors > ul > li {
        list-style-type: none;
    }