
/*  New Login*/

.wrap-login {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
}
.wrap-login .wrap-img {
    position:absolute;
    left:0;
    z-index: 999;
    width: 25%;
    display:none;
}

@media screen and (max-width:560px){
    .wrap-login .wrap-img {
        display:block;
    }
}

.login-more {
    width: calc(100% - 560px);
/*    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;*/
    position: relative;
    z-index: 1;
    /*background-image:url("../images/login-bg.png");*/
    background: rgb(53,62,64);
    background: linear-gradient(180deg, rgba(53,62,64,1) 0%);
}

.login-more::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.1);
}


.login-form,
.register-form {
    width: 560px;
    min-height: 100vh;
    display: block;
    background-color: #f7f7f7;
}
.register-form .wrap-form {
    padding:90px 55px 90px 55px;
}

.wrap-form {
    padding: 170px 55px 285px 55px;
}

.login-form-title {
    width: 100%;
    display: block;
    font-family: Poppins-Regular;
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
}


.container-login-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login-form-btn,
.register-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #454a4e;
    
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;

-webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login-form-btn:hover,
.register-form-btn:hover {
    background: #333333;
}

.register-select {
    border:2px solid #4f5e9b;
    border-radius: 5px;
}

.wrap-login input,
.wrap-login select {
    border:1px solid #778899;
    height:40px;
    border-radius:8px;
}
.wrap-login .sign-in-recovery a {
    color:#454a4e;
}
.wrap-login .footer {
    width:100%;
    height:100%;
    border-top:1px solid #0b0b0b;
    padding:25px;
}
.wrap-login .footer p {
    text-align: center;
}