html, body {
    height: 100%;
    width: 100%;
    min-width:500px;
    min-height:500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    html, body:before {
        background: url(/Content/framework/images/background.png);
        background-size: 100% 100%;
        -moz-background-size: 100% 100%;
        -webkit-background-size: 100% 100%;
    }

body {
    display:flex;
    flex-direction:column
}

#header {
    width: 100%;
    height: 100px;
    background-color: lightgray;
    flex:0 0 auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #000033;
    font-family: \5FAE\8F6F\96C5\9ED1,'Times New Roman';
}

#footer {
    width:100%;
    height:100px;
    flex:0 0 auto;
    display:flex;
    flex-flow:row nowrap;
    justify-content:center;
    align-items:center;
}

#login-box {
    height:500px;
    display:flex;
    flex-flow:row nowrap;
}

#content {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    
}

#left {
    height: 100%;
    width: 400px;
    background: url(/Content/framework/images/left.png);
    background-size: 100% 100%;
    border-radius: 30px 0 0 30px;
    box-shadow: -3px 0px 2px lightgray
}


#right {
    height: 100%;
    width: 500px;
    border-radius: 0 30px 30px 0;
    background-color:white;
    box-shadow: 3px 0px 2px lightgray;
}

.login-header {
    width: 100%;
    text-align: center;
    font-size: larger;
    font-weight: bolder;
    color: #000033;
    letter-spacing: 3px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top:90px;
}

.layui-btn.btn-submit {
    background-color: #3385ff !important;
    margin-top:50px;
    width:180px;
    height:50px;
}

.layui-form {
    margin-top: 50px;
    text-align:center;
}
.layui-input {
    width: 280px;
    display: inline;
    border-style: solid;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 1px;
    border-left-width: 0px;
    background-color:transparent !important;
}
    .layui-input:-webkit-autofill {
        box-shadow: 0 0 0px 1000px #FFF inset !important;
    }
    .layui-input:focus {
        background-color: transparent !important;
    }

.layui-icon {
        color: #cccccc;
        margin-right:10px;
        font-size:large;
    }