﻿body
{
    border-top: 0px;
    height: 100%;
    min-height: 90%;
}

html
{
    background-image: linear-gradient(bottom, #1158AE 20%, #4785CF 60%);
    background-image: -o-linear-gradient(bottom, #1158AE 20%, #4785CF 60%);
    background-image: -moz-linear-gradient(bottom, #1158AE 20%, #4785CF 60%);
    background-image: -webkit-linear-gradient(bottom, #1158AE 20%, #4785CF 60%);
    background-image: -ms-linear-gradient(bottom, #1158AE 20%, #4785CF 60%);

    background-image: -webkit-gradient(
	    linear,
	    left bottom,
	    left top,
	    color-stop(0.2, #1158AE),
	    color-stop(0.6, #4785CF)
    );
    height: 100%;
}

.header
{
    text-align: center;
    height: 50px;
}

.header h2
{
    margin-top: 0px;
    padding-top: 5px;
    color: White;
}

.login-content-container
{
    height: 80%;
    position: relative; 
    overflow: hidden;
}

.logo-container
{
    text-align: center; 
    margin-top: 20px;
}

.logo-container img
{
    border-radius: 5px;
}

.login-container
{
    color: White;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -70px;
    margin-left: -150px;
    padding: 15px;
    width: 300px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
}

.login-error
{
    clear: left;
    float: left;
    margin-top: 5px;
    color: Yellow;
    font-size: 13px;
}

.login-error .validation-summary-errors
{
    color: Yellow;
    font-weight: normal;
}

.login-error .validation-summary-errors ul
{
    margin-left: 0px;
    padding-left: 0px;
    list-style: none;
}

.editor-label
{
    width: 80px;
    float: left;
    clear: left;
    margin-top: 15px;
    text-align: right;
}

.editor-field
{
    float: left;
    margin-left: 15px;
}

.editor-field input
{
    border-radius: 5px;
}

.field-validation-error
{
    display: block;
    color: Yellow;
}

.footer
{
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: White;
}

.footer p
{
    margin: 0px;
}

.footer p a
{
    color: White;
    text-decoration: none;
}

.footer p a:hover
{
    color: #CACACA;
}