body {
    margin: 0;
    background: #141414;
    overflow: hidden;
}

.loginbgc {
    position: fixed;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    background-color: #00000010;
}

.login-box {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1100px;
    height: 672px;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    background-color: #fff;
    transform: translateY(-50%) translateX(-50%);
    overflow: hidden;
}

.login-box>div {
    width: 50%;
    height: 100%;
}

.login-box .login-left img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-box .login-right {
    padding: 8% 10% 0;
    height: 100%;
}

.title {
    text-align: center;
    margin-bottom: 15%;
}

.title img {
    display: block;
    width: 30%;
    margin: 0 auto;
}

.title h1 {
    font-size: 14px;
}

.login-box form {
    display: block;
    width: 100%;
}

.login-box form div {
    position: relative;
    width: 100%;
    font-size: 16px;
    margin-bottom: 10%;
}

.login-box form div .ipt {
    position: relative;
    text-align: center;
    width: 100%;
    height: 48px;
    padding: 3%;
    font-size: 18px;
    border-radius: 4px;
    border: 1px solid #E3E3E3;
    overflow: hidden;
}

.login-box form div .ipt a {
    position: absolute;
    right: 1em;
    /* background-color: #44D2FF; */
    width: 5%;
    height: 60%;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/noshow.svg) no-repeat center center;
    background-size: contain;
}
.login-box form div .ipt.show a {
    background: url(../images/show.svg) no-repeat center center;
    background-size: contain;
}
.login-box form div p {
    line-height: 180%;
}

.login-box form div p span {
    float: left;
    width: 10%;
    height: 100%;
    margin-right: 5%;
}

.login-box form div p span img {
    display: block;
    /* width: 100%; */
    height: 100%;
}

.login-box form div p input {
    float: left;
    font-size: 18px;
    width: 80%;
    outline: none;
    border: none;
    height: 100%;
}

.loginbtn {
    display: block;
    text-align: center;
    color: #fff;
    line-height: 2.5em;
    background-color: #44D2FF;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.loginbtn:hover {
    box-shadow: 0 1em 1em rgba(68, 210, 255, 0.2);
;
}

.yzm {
    display: flex;
}

.yzm span {
    display: block;
    width: 50%;
    height: 100%;
}

.login-error-msg{
    color: red;
    margin-top: 6px;
    display: none;
}

.validation-user-box,
.validation-phone-box,
.validation-email-box,
.validation-password-box {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

    color: red;
}

@media screen and (max-width: 1600px) {
    .login-box {
        width: 70%;
        height: 80%;
    }
}

@media screen and (max-width: 1400px) {
    .login-box {
        width: 900px;
        height: 500px;
    }
    .title {
        margin-bottom: 10%;
    }
    .login-box form div {
        margin-bottom: 5%;
    }
    .login-box .login-right {
        overflow: auto;
    }
}