body {
    /*width: 100%;
    height: 100%;*/

    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    font-weight: bold;    
    width: 98%;
    height: 96%;
    position: absolute;
    background: #F1F1F1 url(../Images/bg.jpg) repeat fixed;
    background-size: cover;
    background-position: 50%;
   -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
.login-card {
    padding: 40px;
    width: 274px;
    background-color: #FFFFFF;
    ma;
    margin: 0 auto 10px;
    border-radius: 0px;
    overflow: hidden;
    color: #525C65;
    border-radius: 6px;
    border: 1px solid #CCCCCC;
    /*box-shadow: 1px 3px 5px 1px rgba(0, 0, 0, 0.15);*/
}
.login-card h1 {
    font-weight: 100;
    text-align: center;
    font-size: 2.3em;
}
.login-card input[type=submit] {
    width: 100%;
    display: block;
    margin-bottom: 1px;
    position: relative;
    border-radius: 4px;
}
.login-card input[type=text],
input[type=password] {
    width: 95%;
    padding: 10px 10px;
    margin: 0px 0px;
    display: inline-block;
    border: 1px solid #CCCCCC;
    font-size: 13px;
    color: #525C65;
    font-weight: normal;
    background-color: #FFF;
    border-radius: 4px;
    /*box-sizing: border-box;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;*/
}
.login-card input[type=text]:hover,
input[type=password]:hover,
.login-card input[type=text]:focus,
input[type=password]:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}
.login {
    text-align: center;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    height: 36px;
    padding: 0 8px;
}
.login-submit {
    border: 0px;
    color: #fff;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    background-color: #4d90fe;
}
.login-submit:hover {
    border: 0px;
    text-shadow: 0 1px rgba(0, 0, 0, 0.3);
    background-color: #357ae8;
}
.login-card a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    opacity: 0.6;
    transition: opacity ease 0.5s;
}
.login-card a:hover {
    opacity: 1;
}
.login-help {
    width: 100%;
    text-align: center;
    font-size: 12px;
}