﻿html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.main-form-container {
    width: 100%;
    height: 100%;
}

.rect {
    font-size: 13px;
    padding-top: 0px;
    height: 100%;
    padding: 0px;
}

.login-bg {
    background-image: url(Images/bg/bg3.jpeg);
    background-color: black;
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center;
    background-size: auto;
    background-origin: content-box;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.login-entry-box {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 450px;
    height: auto;
    display: table;
    background-color: white;
    opacity: 0.4;
    position: absolute;
    top: 50%;
    left: 50%;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    transform: translate(-50%, -50%);
}

.login-user {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url('Images/user.svg');
}

.login-password {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url('Images/password.svg');
}


.login-header-logo {
    /*background: url('Images/logo.svg') no-repeat center;*/
    height: 26px;
    width: 150px;
    font-size: 30px;
    font-weight: 500;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
}

.login-header-logo-Bold {
    font-weight: 800;
    color: rgba(248, 124, 29, 1);
}

.login-header-logo-light {
    font-weight: 400;
    color: rgba(248, 124, 29, 1);
}

.login-caption-logo {
    /*background: url('Images/logo.svg') no-repeat center;*/
    height: 26px;
    width: 150px;
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
    color: rgba(0, 0, 0, 1);
}

.login-caption-logo-Bold {
    font-weight: 800;
    color: rgba(248, 124, 29, 1);
}

.login-caption-logo-light {
    font-weight: 400;
    color: rgba(248, 124, 29, 1);
}

.Login-section {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100% !important;
    height: 100%;
    margin: auto;
    border: 0px solid #FFFF00;
    padding: 0px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.Login-header-caption {
    
    height: 30px;
    
    
    padding: 24px;
}

/*footer*/
.login-footer-wrapper {
    height: 46px; /* Footer Height */
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0) !important;
}


.login-footer {
    font-size: 10.5px;
    color: #999999;
}

.login-footer-link {
    color: #999999;
    border-right: 1px solid #bbbbbb;
    margin-right: 7px;
    padding-right: 10px;
    white-space: nowrap;
}

.login-footer-link:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.login-footer-left {
    float: left;
}

.login-footer-right {
    float: right;
}

.login-footer-left,
.login-footer-right {
    padding: 16px 24px;
}

@media (max-width: 599px) {
    .login-footer-left,
    .login-footer-right {
        padding: 16px 4px;
    }
}
@media print {
    .login-footer-wrapper {
        display: none !important;
    }
}