﻿/* general */
* {
    padding: 0px;
    margin: 0px;
}

h1 {
    font-family: 'Open Sans', Tahoma, Arial, Verdana;
    font-weight: 300;
    color: #000;
    font-size: 27px;
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, Verdana;
    font-size: 13px;
    font-weight: 300;
    color: #999;
    background-color: #e9e9e9;
    background: url('/Content/images/bg.png') repeat;
}

input[type="checkbox"] {
    margin-top: 6px;
    margin-right: 5px;
    margin-left: 2px;
}

input:focus {
    outline: 0;
}

.clear {
    clear: both;
    height: 0px;
    overflow: hidden;
}

image {
    border: none;
}


/* wrapper */
#wrapper {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
}

/* top */
#top {
    height: 150px;
}

#mainContainer {
    margin: 0 auto;
}

#contentContainer {
    padding: 0;
    width: 450px;
    margin: auto;
    background-color: #fff;
    border: 6px solid #f3f3f3; /* eaeaea */
    border-radius: 6px;
    overflow: hidden;
    -moz-box-shadow: 0 0 50px #898989;
    -webkit-box-shadow: 0 0 50px #898989;
    box-shadow: 0 0 50px #898989;
}

#footerContainer {
    padding: 0;
    width: 900px;
    margin: auto;
    border: none;
    overflow: hidden;
}

.loginBox {
    display: block;
    width: 450px;
    float: right;
    background-color: #fff;
    height: 400px;
}

    /* content of the loginbox */

    .loginBox .logo {
        margin-top: 40px;
        margin-left: 80px;
    }

    .loginBox img {
    }

    .loginBox p.introText {
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .loginBox p {
        margin-bottom: 10px;
    }

    .loginBox .username {
        padding: 5px 12px;
        width: 259px;
        line-height: 24px;
        height: 25px;
        font-size: 14px;
        color: #909090;
        border: 1px solid #D6D6D6;
        border-radius: 6px;
    }

    .loginBox .password {
        padding: 5px 12px;
        width: 259px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        color: #909090;
        border: 1px solid #D6D6D6;
        border-radius: 6px;
    }

    .loginBox .button {
        font-family: 'Open Sans', Tahoma, Arial, Verdana;
        width: 285px;
        height: 38px;
        cursor: pointer;
        border: 0;
        font-size: 13px;
        line-height: 34px;
        font-weight: 600;
        color: #fff;
        display: block;
        margin-left: 0;
        margin-top: 30px;
        margin-bottom: 25px;
        text-align: center;
        border-radius: 6px;
        border: solid 1px #0076a3;
        background: #0095cd;
        background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
        background: -moz-linear-gradient(top, #00adee, #0078a5);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
    }

        .loginBox .button:hover {
            background: #007ead;
            background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
            background: -moz-linear-gradient(top, #0095cc, #00678e);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
            color: #fff;
        }

    .loginBox a {
        text-decoration: none;
        color: #246bb2;
    }
