﻿* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    text-decoration: none;
    vertical-align: baseline;
    box-sizing: border-box;
}

html {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    color: #404040;
    text-rendering: optimizeLegibility;
}

#login-wrapper {
    width: 320px;
    min-height: 480px;
    padding: 15px 40px 15px 40px;
    background-color: #ffffff;
    position: absolute;
    left: calc(50% - 160px);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto;
    border: 1px solid lightgrey;
}

#login-wrapper input[type=text],
#login-wrapper input[type=password] {
    border: solid 1px #cdcdcd;
    margin-right: 5px;
    height: 25px;
    line-height: 25px;
    padding-left: 10px;
    border-radius: 4px;
    width: 100%
}

#login-wrapper h2 {
    padding: 0px;
    margin: 10px 0px;
    width: 100%;
    font-weight: bold;
    font-size: 1.5em;
    text-transform: uppercase;
}

#login-wrapper h3 {
    padding: 0px;
    margin: 10px 0px;
    width: 100%;
}

#login-wrapper p {
    padding: 0px;
    margin: 0px;
    width: 100%;
    text-align: center;
    padding: 15px 0px;
}

#login-wrapper img {
    width:100%;
}

#login-button {
    height: 25px;
    line-height: 25px;
    background-color: #2B59C4;
    color: #ffffff;
    text-align: center;
    width: 90px;
    float: left;
    cursor: pointer;
    border-radius:4px;
}
#login-button:hover { color: #e6e6e6; }

#reset-password {
    color: #000000;
    text-decoration: none;
    float: right;
    height: 25px;
    line-height: 25px;
}
#reset-password:hover { text-decoration: underline; }

#subscribe-button {
    display: block;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    margin: 10px 0px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    border-radius:4px;
}
#subscribe-button:hover { color: #e6e6e6; }

#login-failed {
    display: none;
    padding: 5px 0px 5px 0px;
    color: #ff0000
}

#description a:hover { text-decoration: underline; }