* {
    padding: 0;
    margin: 0;
}

.login-warpper {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(135deg, rgba(0, 214, 255, 1) 0%, rgba(0, 51, 255, 1) 100%);
    /* overflow: auto; */
}

.login-bg {
    width: 60%;
    height: 100%;
    background-image: url(/images/login_admin_bg.png);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.login {
    position: absolute;
    top: 0;
    left: 60%;
    width: 40%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background: rgba(255, 255, 255, 1);
}

.login-container {
    width: 100%;
    text-align: center;
    padding: 3rem 8.5rem;
}

.login-title {
    width: 100%;
    padding: 25px 0;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 52.13px;
    color: rgba(64, 64, 64, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.36);
    margin-bottom: 40px;
}

.form-item {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: left;
}

    .form-item > label {
        display: block;
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 0px;
        color: rgba(64, 64, 64, 1);
    }

    .form-item input {
        width: 100%;
        font-size: 18px;
        font-weight: 400;
        height: 44px;
        text-indent: 55px;
        letter-spacing: 0px;
        line-height: 20.27px;
        color: rgba(64, 64, 64, 1);
        border-radius: 8px;
        background: rgba(230, 233, 235, 1);
        border: none;
        outline: none;
    }

    .form-item::before {
        content: '';
        position: absolute;
        top: 38px;
        width: 44px;
        height: 44px;
        background-position: center;
        background-size: 28px 28px;
        background-repeat: no-repeat;
    }

    .form-item.user::before {
        background-image: url(/images/Frame@2x.png);
    }

    .form-item.password::before {
        background-image: url(/images/Vector@2x.png);
    }

.login-btn {
    margin-top: 30px;
    padding: 9px 10px;
    width: 100%;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 34.75px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: top;
    border-radius: 8px;
    background: rgba(51, 184, 255, 1);
    outline: none;
    border: none;
}

@media screen and (max-width: 1600px) {
    .login-container {
        padding: 3rem 7.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .login-container {
        padding: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .login {
        width: 100%;
        left: 0;
    }
}
