@charset "utf-8";

/* CSS Document */

body {
    width: 100vw;
    height: 100vh;
    background: url(/orderadmin/images/bg2.jpg) no-repeat;
    background-size: 100% 100%;
    font-family: '微软雅黑','Microsoft YaHei'!important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-panel {
    width: 55%;
    /* height: 450px; */
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    /* position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0; */
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 2px 3px #c9c9c9;
}
.main-warpper {
    padding: 5%;
    flex: 0 0 60%;
    box-sizing: border-box;
}
.main-warpper h3{
    margin: 0 0 2% 0%;
    margin-bottom: 40px;
    color: #2b5cd2;
    font-weight: 600;
    letter-spacing: 1px;
}

.login-logo {

    margin: 2%;
}

.login-logo img {
    width: 200px;
    height: auto;
}
.login-logo h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    font-style: italic;
    padding: 10px 25px;
    color: #000; 
}

.login-title {
    text-align: center;
    margin: -10% auto 2% auto;
    color: #F9AB1E;
    font-size: 20px;
    font-weight: bold;
}

.login-form input {
    width: 100%;
    height: 40px;
    margin: 2% 0%;
    padding: 0px 15px;
    font-size: 14px;
    background: #f2f2f2;
    border: 0;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f2f2f2 inset !important;
}

#login-button {
    margin: 8% 0% 2% 0%;
    background-color: #008c3c;
    width: 100%;
    height: 50px;
    color: #fff;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    outline: 0;
    border-radius: 4px
}

#login-button:hover {
    background-color: #0c46d1;
    transition: all 0.3s;
}

.login-forgot-pw {
    /* text-align: center; */
    color: #000;
    display: block;
    margin-left: 3%;
    margin-top: 2%;
}

.login-forgot-pw:hover {
    color: #62a8ea;
}

@media screen and (max-width:1200px) {
    .login-panel{
        width: 90%;
        display: block;
        height: auto;
        text-align: center;
    }
}
