html,
body {
    height: 100%;
}

.login-contaniner {
    background: url("../Images/login_bg.png") no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 1000px; */
    height: 100%;
}

.login-main {
    width: 1100px;
    min-width: 920px;
    height: 620px;
    margin: 0 auto;
    overflow: hidden;
}

.login-left {
    float: left;
    width: 68%;
    height: 100%;
    position: relative;
}

    .login-left > img:nth-child(1) {
        width: 100%;
        height: 100%;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .login-left > img:nth-child(2) {
        position: absolute;
        top: 5%;
        left: 5%;
    }

    .login-left > img:nth-child(3) {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
    }

.login_content {
    background-color: #fff;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    float: left;
    width: 32%;
}

.back_home {
    text-align: right;
    padding: 20px;
}

#login-select {
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: space-around;
    box-sizing: border-box;
}

    #login-select p {
        font-size: 18px;
        color: #999;
        box-sizing: border-box;
        height: 28px;
    }

        #login-select p.active {
            border-bottom: 2px solid #333;
            padding-bottom: 4px;
            color: #333 !important;
        }

.login_content h1 {
    font-size: 25px;
    color: #2991ff;
    text-align: center;
    padding-top: 30px;
    font-weight: 550;
}

.input_row {
    height: 40px;
    border: 1px solid #efeff4;
    border-radius: 5px;
    width: 82%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

    .input_row span {
        display: inline-block;
        border-right: 1px solid #efeff4;
        padding-right: 10px;
        padding-left: 10px;
        flex-shrink: 0;
    }

    .input_row input {
        height: 100%;
        border: 0;
        margin-left: 10px;
        width: 100%;
    }

.password_row {
    height: 40px;
    border: 1px solid #efeff4;
    border-radius: 5px;
    width: 82%;
    margin: 20px auto;
    overflow:hidden;
}

    .password_row input {
        height: 100%;
        border: 0;
        margin-left: 10px;
        width: 100%;
    }

.sms_row {
    height: 40px;
    border: 1px solid #efeff4;
    border-radius: 5px;
    width: 82%;
    margin: 20px auto 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .sms_row input {
        height: 100%;
        border: 0;
        margin-left: 10px;
        width: 100%;
    }

.sms_code {
    height: 100%;
    margin-left: 10px;
}

    .sms_code img {
        height: 100%;
    }

.forget-pass {
    display: block;
    font-size: 14px;
    color: #333;
    width: 82%;
    margin: 10px auto;
    padding-left: 10px;
}

.loginBtn {
    width: 82%;
    margin: 20px auto;
}

    .loginBtn button {
        width: 100%;
        height: 36px;
        background-color: #2991ff;
        border: 0;
        color: #fff;
        font-size: 14px;
        border-radius: 5px;
    }

.privacy {
    font-size: 13px;
    text-align: center;
    padding-top: 10px;
    color: #999;
    display: block;
}

    .privacy span {
        color: #333;
    }


/* #login_view {
    animation: fadenum 3s ease-in-out;
} */

#orgin {
    display: none;
    /* animation: fadenum 3s ease-in-out; */
}

@keyframes fadenum {
    0% {
        transform: translateX(5%);
    }

    50% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(0);
    }
}

#loginToast {
    position: fixed;
    top: 5%;
    background-color: #fff;
    padding: 10px 15px;
    width: 240px;
    /* transform: translateX(-200%); */
    border-radius: 5px;
    animation: loginShow 2s ease-in-out;
    right: 1%;
    display: none;
}

    #loginToast h1 {
        font-size: 16px;
        color: #000;
        margin-bottom: 5px;
    }

    #loginToast p {
        font-size: 14px;
        color: #999;
    }



@keyframes loginShow {
    0% {
        right: -100%;
    }

    50% {
        right: -50%;
    }

    100% {
        right: 1%;
    }
}
