.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:transparent;
    position: relative;
    z-index: 99;
    padding: 40px 0 110px;
    display: flex;
    justify-content: space-between;

    border-radius: 30px;
    background-image: url(../img/shape.png);
    background-size: 100% 100%;
}


.form .left {
    display: flex;
    flex-direction: column;
    margin-left: 56px;
}

.form .right {
    margin-right: 56px;
    position: relative;
    z-index: 99;
}

.form .left .logos {
    height: 32px;
    width: 38px;
    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: rgba(238,245,251, 0.5);
    border-radius: 22px;
    max-width: 430px;
    padding: 0 16px;

    margin-bottom: 20px;
    position: relative;
}
.form .right .item img{
    width: 16px;
    height: auto;
}

.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: #FFA4B6;
}

.form .fa {
    position: static;
    width: auto;
    height: auto;
}

.form #login_button {
    background: linear-gradient(-90deg, #5176C5, #ADCAE9);
    border-radius: 19px;
}
input:-webkit-autofill{
    background: transparent;
    transition: background-color 50000s ease-in-out 0s; 
}

/* .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;
    }

}