.loginwrap {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('../../img/login/bj.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.loginwrap .container {}

.loginwrap .logo {
    margin-top: 40px;
    margin-bottom: 40px;
}
.loginwrap .logo img {
    width: 100%;
    max-width: 500px;
}
.loginwrap .main {
    /* flex: 1; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.loginwrap .formbox {
    width: 400px;
    background: #FFFFFF;
    border-radius: 3px;
    float: right;
    padding: 30px 5px;
}

.loginwrap .formbox .title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}
.loginwrap .formbox .title b {font-weight: bold;}

.loginwrap .footer {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .2);
    color: #fff;
}

.loginwrap .footer .container {
    text-align: center;
}

.loginwrap .formgroup {
    display: flex;
    flex-direction: column;
}

.loginwrap .formgroup~.formgroup {
    margin-top: 0px;
    border: none;
}

.loginwrap .formgroup label {
    font-size: 1rem;
    font-weight: bold;
}

.loginwrap .formgroup .formcontrol {
    height: 40px;
    margin-top: 5px;
    font-size: 1rem;
    border: 1px solid #979797;
    padding: 3px;
}

.loginwrap .btn-login {
    width: 100%;
    height: 64px;
    background: linear-gradient(180deg, #E84D47 0%, #E93733 100%);
    border-radius: 3px;
    font-size: 24px;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
}

.loginwrap .btn-login:active {
    background: linear-gradient(180deg, #de4943 0%, #c9312e 100%);
}

.loginwrap .formgroup .icon-label {display: none;}
.forgetlink {text-align: center; text-decoration: underline; color: #E93E3A;}
.forgetlink:active, .forgetlink:focus {color: #E93E3A;}


.layui-input-wrap {width: 100%;}
.layui-input-wrap .layui-input {padding-left: 43px; border: none; font-size: 1.2rem;}
.layui-input-wrap .layui-icon {font-size: 1.5rem;}


/* 小设备 (平板电脑和大型手机，600 像素及以上) */
@media only screen and (min-width: 600px) {}

/* 中型设备（平板电脑，768 像素及以上） */
@media only screen and (min-width: 768px) {
    .loginwrap .container{
        padding: 1.125rem 6.25rem;
    }
}

/* 大型设备（笔记本电脑/台式机，992 像素及以上） */
@media only screen and (min-width: 992px) {
    .loginwrap .container {
        padding: 1.75rem 9.875rem;
    }
}
@media only screen and (max-width: 992px) {
    .loginwrap .logo {
        text-align: center;
    }
    .loginwrap .logo img {
        width: 90%;
    }
    .loginwrap .main {
        justify-content: space-around;
    }
}

/* 超大型设备（大型笔记本电脑和台式机，1200 像素及以上） */
@media only screen and (min-width: 1200px) {
    .loginwrap .container {
        padding: 1.75rem 16.125rem;
    }
}

@media only screen and (max-width: 600px) {
    .header {
        height: 30%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .loginwrap {
        /* width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column; */
        background-image: url(../../img/login/mbj.png);
        background-repeat: no-repeat;
        background-size: 100% 50%;
        background-position: top center;
        /* background-size: cover; */
        /* background-position: center; */
    }
    .loginwrap .formbox .title {display: none;}
    .loginwrap .main {
        flex: 1;
        background-color: none;
        align-items: flex-start;
    }
    .loginwrap .main .container {width: 100%;}
    .loginwrap .formbox {border-radius: 40px; padding: 30px 15px; padding-top: 40px; width: 90%;
        margin: 0px auto;
        float: none;}
    .loginwrap .formgroup label {display: none;}
    .loginwrap .formgroup {flex-direction: row; align-items: center; border-bottom: 1px solid #ddd !important; padding: 10px 0;}
    .loginwrap .formgroup-btns {border-bottom: none !important; flex-direction: column;}
    .loginwrap .formgroup .formcontrol {
        border: none;
        margin-top: 0px;
        margin-left: 10px;
        font-size: 1.2rem;
    }
    .loginwrap .btn-login {border-radius: 40px;}
    .loginwrap .formgroup .icon-label {display: block;}
    .icon-label .iconfont {font-size: 1.5rem;}
}