﻿html {
    margin: 0;
    padding: 0;
    font-family: Arial;
    font-size: 13px;
    color: #333;
    /*background: #2A6EBB;*/
    -moz-box-shadow: inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow: inset 0 0px 100px rgba(0, 0, 0, 0.28);
    height: 100%;
    
    background-image: url(/Styles/Images/login-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    min-height: 100%;
}

a, a:visited {
    color: white;
    text-decoration: none;
}

    a:hover {
        color: rgb(250, 255, 189);
    }

.clear {
    clear: both;
}

.content {
    width: 1000px;
    margin: auto;
}

.center {
    /*width: 1000px;*/
    position: absolute;
    top: 25%;
    left: 37%;
}
/*Login*/
#loginbox {
    width: 400px;
    height: 300px;
    background: rgba(0, 159, 218, 0.28);
    color: white;
    float: left;
}

#loginbox .login-header{
    font-size: 40px;
    padding: 10px 20px 10px 20px;
}

    #loginbox .login-content {
        padding: 10px 20px 0px 20px;
    }

    #loginbox .login-content .row{
        margin-bottom: 10px;
    }

    #loginbox .login-footer {
        padding: 20px;
    }

    #loginbox .login-footer .button{
        height: 35px;
        width: 120px;
        cursor: pointer;
    }

.failure-notification {
    font-size: 11px;
    color: yellow!important;
}

/*Control*/
.textbox {
    border: 1px solid #ccc;
    width: 100%;
    margin: 0;
    padding: 6px 4px 6px 4px;
    margin-top: 2px;
    margin-bottom: 5px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-box-sizing: border-box; /*Firefox 1-3*/
    -webkit-box-sizing: border-box; /* Safari */

}

/*Box*/
.box {
    float: left;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 165px;
    height: 165px;
    padding: 10px;
    background: #f2f2f2;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-box-sizing: border-box; /*Firefox 1-3*/
    -webkit-box-sizing: border-box; /* Safari */
}

.box ul{
    list-style-type: none;
    padding-left: 0px;
}

.box ul li{
    padding: 2px 0px 2px 0px;
}

.box-header {
    font-size: 20px;
    margin-bottom: 15px;
}

.box-larger {
    width: 535px;
    height: 165px;
}

.box-larger img{
    width: 100%;
    height: 165px;
}

.color1 {
    background: #A71930;
    color: white;
}

.color2 {
    background: #EFEFEF;
    color: white;
}

.color3 {
    background: #00A8B4;
    color: white;
}

.color4 {
    background: #C75B12;
    color: white;
}

.shadow {
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.35);
}

.no-padding {
    padding: 0px;
}

.footer {
    color: white;
    text-align: center;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}