* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #3b464f;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 16px;
}

input {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

a {
    text-decoration: none;
}

#loginWrapper {
    width: 720px;
    margin: 0 auto;
    margin-top: 100px;
}

.line{
    width: 100%;
    height: 1px;
    background-color: #2F404F;
    border-bottom: 1px solid #37414C;

}

#loginHeader {
    width: 720px;
    height: 99px;
    text-align: center;
}

#loginHeader b {
    font-weight: 400;
}

#loginForm {
    width: 720px;
    height: 250px;
    padding-top: 30px;

}

#loginFormError {
    width: 480px;
    height: 30px;
    margin-left: 120px;
}

.error {
    font-size: 14px;
    color: white;
    text-shadow: 1px -1px rgba(1,1,1, 0.3);
    background-image: url("../img/login/error_icon-678046f30d30b0799d0712f58b2b73ff.png");
    background-repeat: no-repeat;
    background-position: left center;
    width: 480px;
    margin: 0 auto;
    padding-left: 25px;
    text-align: left;
}

#loginFormHeader{
    text-align: center;
    font-size: 14px;
    color: #E3E3E3;
    text-shadow: 1px -1px rgba(1,1,1, 0.5);
}


#loginFormForm > form > .formRow {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

#loginFormForm > form > .formRow > input {

    color: #a1a1a1;
    font-size: 12px;
    height: 35px;
    padding: 0;
}

#loginFormForm > form > .formRow > input[type=text], #loginFormForm > form > .formRow > input[type=password] {
    border: 1px solid black;
    padding-left: 45px;

    width: 435px;
    background-repeat: no-repeat;
    background-position: center left;
    line-height: 25px;
}

#loginFormForm > form > .formRow > input[type=text] {
    background-image: url("../img/login/person_icon-50681db9b08226010d9769bc695ec79f.jpg");
}

#loginFormForm > form > .formRow > input[type=password] {
    background-image: url("../img/login/password_icon-847ba38356bb9be712294b5d04d3699d.jpg");
}


#loginBtn{
    float: right;
    width: 300px;
    text-align: right;
}

#loginFormForm > form > .formRow > div > input[type=submit] {
    width: 243px;
    background: none;
    background-color: #37A1DA;
    line-height: 34px;
    border: 0;
    border: 1px solid #3474C2;
    padding: 0;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: normal;
    color: white;
    text-shadow: 1px -1px rgba(1,1,1, 0.3);
    cursor: pointer;
    margin-top: 30px;
}




#loginFormForm > form > .formRow > div > input[type=submit]:hover {
    text-decoration: underline;
}

#loginFormForgot {
    height: 34px;
    width: 243px;
    margin-top: 30px;
    float: left;

}

#loginFormForgot a {


    color: white;
    background-color: #919191;
    text-shadow: 1px -1px rgba(1,1,1, 0.3);
    text-decoration: none;
    border: 1px solid #828282;
    font-size: 12px;
    height: 34px;
    width: 243px;
    display: inline-block;
    line-height: 34px;
}

#loginFormForgot a:hover {
    text-decoration: underline;
}

#loginLogo img{
    max-width: 380px;
    max-height: 75px;

    text-align: center;
}

#loginLogo img {
    border: 0;
}
@media(max-width: 768px) {
    #loginWrapper, #loginHeader, #loginForm {
        width: 100% !important;
    }

    #loginFormForm > form > .formRow > input[type="text"], #loginFormForm > form > .formRow > input[type="password"] {
        width: 75% !important;
    }
}
@media(max-width: 550px) {
    #loginFormForgot, #loginBtn {
        width: 100% !important;
        float: none !important;
        text-align: center !important;
    }
}