.demo-app {
    width: 100%;
    height: 100%;
    background: url(../img/loginBg.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
}

.demo-app .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    max-width: 768px;
    border-radius: 30px;
    box-shadow: 0px 18px 30px 0px rgba(187,76,67,0.2);
}

.form {
    background-color: #fff;
    position: relative;
    z-index: 99;
    padding: 40px 0 110px;
    display: flex;
    justify-content: space-between;

    border-radius: 30px;
}


.form .left {
    display: flex;
    flex-direction: column;
    margin-left: 56px;
}

.form .right {
    margin-right: 56px;
    position: relative;
    z-index: 99;
}

.form .left .logos {
    width: 120px;
    margin-bottom: 28px;
    /* height: 34px; */
}

.form .left .leftIcon {
    width: 253px;
    /* height: 198px; */
}

.form .right .title {
    font-weight: 400;
    color: #4F4F4F;
    font-size: 18px;
    margin-bottom: 52px;
}

.form .right .item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F3F3F3;
    border-radius: 22px;
    max-width: 430px;
    padding: 0 16px;

    margin-bottom: 20px;
    position: relative;
}

.form .right .item input {
    background-color: transparent;
    margin-bottom: 0;
    max-width: 240px;
    border: none;
}
.form #txt_code{
    background-color: #F3F3F3;
    border-radius: 22px;

}

.form .fa:before {
    color: #2985f6;
}

.form .fa {
    position: static;
    width: auto;
    height: auto;
}

.form #login_button {
    background: linear-gradient(-90deg , #68A2F9, #2979E6);
    border-radius: 19px;
}

.form .bottomImg {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    border-radius: 0 0 30px 30px;
}
 .login_tips{
    bottom: -40px;
}
@media (min-width: 320px) and (max-width: 699px) {

    .form .left .leftIcon{
        display: none;
    }
    .form .left .logos{
        position: absolute;
         top: -60px;
    }

}