body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 18px;
    overflow: hidden;
}
label {
    font-weight: normal;
    font-size: 14px;
    text-shadow: 1px 1px 2px #fff, 0 0 15px #fff, 0 0 5px #fff;
}
.btn-primary {
    color: #fff;
    background-color: #1e3d71;
    border-color: #1e3d71;
    letter-spacing: 1px;
    line-height: 24px;
    margin-top: 3px;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active
{
    background: linear-gradient(to top, #1e3d71, #0579bb);
}
.logo {
    z-index: -1;
    opacity: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: scale(3.5) rotate(-55deg);
     -webkit-animation:spin 1s ease-out;
    -moz-animation:spin 1s ease-out;
    animation:spin 1s ease-out;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
@-moz-keyframes spin { 100% { -moz-transform: scale(8) rotate(-45deg); opacity: 1;} }
@-webkit-keyframes spin { 100% { -webkit-transform: scale(8) rotate(-45deg); opacity: 1;} }
@keyframes spin {0% {transform: scale(3.5) rotate(-55deg); opacity: 0} 100% {transform: scale(8) rotate(-45deg); opacity: 1;} }

.formWrapper {
    width: 300px;
    margin: 80px auto 0;
    transform: translate(0, 50px);
    opacity: 0;
    animation: float 1s ease-out;
    animation-fill-mode: forwards;
    border-radius: 7px;
    padding: 20px;
    /*background: linear-gradient(to top, white, transparent);*/
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    z-index: 10;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@keyframes float {100% { transform: translate(0px); opacity: 1; } }

.error {
    color: red;
    font-size: 14px;
    text-align: center;
}

.info {
    margin-left: 35%;
    margin-right: 35%;
    margin-top: 30px;
    width: 30%;
    padding: 30px;
}

#sessionExpirationMessage {
    overflow: hidden;
    padding-left: 14px;
}

.infoIcon {
    float: left;
    line-height:inherit;
}
