html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.oc-fullscreen {
    width: 100%;
    height: 100%;
}

.home-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.home-banner {
    flex: 1;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url('/awsome_multi_tab_theme_enterprise/static/images/left.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


/* 遮罩层 */
.home-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 46, 66, 0.8);
    z-index: 1;
}

/* 内容层（确保内容在遮罩之上） */
.home-banner>* {
    position: relative;
    z-index: 2;
}

.home-banner .home-slogan {
    width: 100%;
    padding-left: 40px;
}

.home-banner .home-slogan .home-title,
.home-banner .home-slogan .home-subtitle {
    width: 100%;
    height: 67px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 2.5rem;
    color: #FFFFFF;
    line-height: 67px;
    text-align: left;
    font-style: normal;
}

.home-banner .home-slogan .home-subtitle .highlight {
    color: #00AACB;
}

.home-banner .banner-logo {
    position: absolute;
    bottom: 25px;
    left: 40px;
}

.home-banner .banner-logo img {
    width: 15rem;
}


.home-login {
    width: 600px;
    height: 100vh;
    background: #242e42;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    right: 0;
    z-index: 10;
}

.home-login .login-box {
    width: 330px;
}

.home-login .login-logo .home-logo img {
    width: 60px;
    margin-bottom: 37px;
}

.home-login .login-title h1 {
    width: 60px;
    height: 42px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 30px;
    color: #00AACB;
    line-height: 42px;
    font-style: normal;
}

.mb-3 label {
    font-size: 14px;
    color: #ffffff;
}

.bg-100 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* background-image: url('/awsome_multi_tab_theme_enterprise/static/images/background.png'); */
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    width: 20%;
    height: 60%;
    position: absolute;
    top: 0;
    left: 16.6%;
    padding-top: 17%;
}

.fl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    padding: 0 3rem;
}

.login-container,
.password-login-container {
    width: 100%;
}

.login-container .btn-link {
    color: #11A6C4;
}

.login-container .alert {
    width: 100%;
}


.login {
    /* width: 13rem; */
    height: 32px;
    background-color: #11A6C4;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
}

.change {
    display: block;
    width: 65%;
    font-size: 12px;
    color: #2CAEC8;
    text-align: left;
    text-decoration: none;
    margin-top: 20px;
}

a:active {
    color: #0F3B56;
}

.logo {
    position: absolute;
    bottom: 2%;
    right: 2%;
}

#submitLoginBtn,
#confirmBtn,
#confirmVerifyBtn {
    width: 100%;
    background-color: #00AACB;
}

#sendCodeBtn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#sendCodeBtn {
    width: 82px;
    border-color: #ced4da;
    color: #ced4da;
}

#sendCodeBtn:hover {
    background-color: #00AACB;
    color: #FFFFFF;
}

#sendCodeBtn:focus,
#sendCodeBtn.focus {
    box-shadow: none;
}

.captcha-box {
    width: 13rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#captcha {
    width: 60%;
}

#captcha-img {
    flex: 1;
    border: 1px solid #ced4da;
    border-left: none;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    cursor: pointer;
}

.login-container #login,
.login-container #password,
.login-container #captcha,
#passwordResetForm #login,
#passwordResetForm #phone,
#passwordResetForm #verificationCode {
    color: #11A6C4;
}



/********************************媒体查询*********************************/
@media screen and (min-width:660px) {

    body.mobile-device .home-login {
        width: 100%;
    }

    body.mobile-device .home-banner {
        display: none;
    }
}

body.mobile-device .home-login {
    width: 100%;

}

body.mobile-device .home-banner {
    display: none;
}

body.mobile-device .d-grid {
    text-align: center;
}