
body {
    background: rgba(241, 245, 251, 1);
}

.main {
    display: flex;
    min-width: 1200px;
}

.leftside {
    width: 55%;
    margin-left: 10%;
}

.rightside {
    width: 45%;
    margin-right: 10%;
    z-index: 999;
}

.backgroundImg {
    height: 70%;
    position: relative;
    right: -25%;
    margin-top: 10%;
}

.backgroundImg img {
    width: 60%;
}

.loginForm {
    max-width: 600px;
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    margin-top: 10%;
}

.loginForm .welcomeSpan {
    font-size: 1.4rem;
    font-family: DIN-Medium, DIN;
    font-weight: 500;
    color: rgba(203, 203, 203, 1);
    line-height: 34px;
    padding: 20px 0 0 0;
    text-align: center;
    /* display: inline; */
}

.loginForm .titleSpan {
    font-size: 1.6rem;
    font-family: PingFangSC-Medium, PingFangSC;
    font-weight: 500;
    color: rgba(102, 102, 102, 1);
    line-height: 42px;
    margin-bottom: 20px;
    text-align: center;
}

.labelGroup {
    width: 70%;
    margin-top: 20px;
    margin-left: 14%;
}

.loginForm label {
    height: 22px;
    font-size: 1rem;
    font-family: PingFangSC-Medium, PingFangSC;
    font-weight: 500;
    color: rgba(182, 187, 195, 1);
    line-height: 22px;
}

.loginForm input {
    border: 1px solid rgba(228, 228, 228, 1);
    border-style: none none solid none;
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 1);
    opacity: 0.9756;
}

.loginForm input.text {
    padding-left: 50px;
}

.loginForm input:focus {
    outline: none;
    border: 1px solid rgba(23, 195, 210, 1);
    border-style: none none solid none;
}

#loginBtn {
    border-style: none;
}

.loginForm .button {
    display: flex;
    justify-content: center;

}

.button span {
    position: relative;
}

.button input {
    background: linear-gradient(180deg, rgba(51, 227, 235, 1) 0%, rgba(23, 195, 210, 1) 100%);
    background-image: url("/static/images/login/login_button.png");
    background-position: center;
    background-repeat: no-repeat;
    margin: 5% 0;
    width: 404px;
    height: 92px;
    font-size: 1rem;
    font-family: PingFangSC-Medium, PingFangSC;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

#loginBtn:active {
    background-image: url("/static/images/login/login_button2.png");
}

