@charset "utf-8";
body,th,td {
    height: 100%;
    margin: 0;
    font-family: tahoma;
    font-size: 14px;
    background-image: url("../../public/images/background/bg.jpg");
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#container {
    width: 100%;
    height: auto;
    padding-top: 10px;
}


#login_row{
    position:absolute;
    width: 500px;
    height: auto;
    box-sizing: border-box;
    top:50%;
    left:50%;
    margin-left:-250px;
    margin-top:-180px;
}

#login_main{
    position: relative;
    float: left;
    width: 500px;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
}
#login_main #login {
    width: 100%;
    height: 320px;
    background: #fff;
    -webkit-box-shadow: 2px 1px 4px 2px #525151;
    box-shadow: 2px 1px 4px 2px #525151;
}

#login_main #login_header {
    background-image: url(../images/logo/logo.png);
    background-repeat: no-repeat;
    background-size: 35px auto;
    background-position: 20px center;
    height: 60px;
    line-height: 60px;
    padding-left: 60px;
    font-size: 18px;
    background-color: #4e6b9e;
    color: #FFFFFF;
}

#login_main #login_content {
    height: auto;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

#login_main #login_content input[type="text"],#login_main #login_content input[type="password"] {
    width: 98%;
}

.login_error {
    height: auto;
    padding-left: 50px;
    background-color: #FFD8D9;
    border-top: 1px solid #FF0004;
    border-bottom: 1px solid #FF0004;
    color: #FF0004;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 10px;
}


label.error {
    color: red;
    font-size: 14px;
    font-style: italic;
}

input[type="text"].error {
    background: #ffb5b5;
    outline: #fc3b3b auto 5px;
}

input[type="password"].error {
    background: #ffb5b5;
    outline: #fc3b3b auto 5px;
}

#loader{
    top: 0;
    z-index: 99;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.40);
    text-align: center;
    padding-top: 48vh;
    box-sizing: border-box;
}