.login-wrapper{
    position: relative;
    height: 100%;
    min-height: 100vh;
}

.login-image{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-image:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 211px;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.50) 50%, rgba(0, 0, 0, 0.00) 100%);
    
}
#login p#nav {
    display: none;
}

.login-form-wrap{
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: 39px 20px 116px 20px;
    max-width: 556px;
    margin: 0 auto;
    text-align: center;
}

.login-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-logo img{
    margin: 0 auto;
    /* max-width: 138px; */
    max-width: 75%;
    /* height: 172px; */
    height: auto;
}

.login-form{
    position: relative;
    border-radius: 20px;
    padding: 40px 32px;
    background: #FFF;
    z-index: 1;
}
.login-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 5px; 
    background: linear-gradient(to bottom right, #8114FF 0%, #F73BDC 25%, #FF7878 50%, #00FF1E 75%, #F19400 100%, #FFFFAE);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;

}
.login-logo{
    margin-bottom: 42px;
}

.login-form .login-username label,.login-form .login-password label{
    display: none;
}

.login-form p{
    margin-bottom: 16px;
    line-height: 25px;
}

.login-form .text-content p{
    line-height: 20px;
}

.login-form .text-content{
    margin-bottom: 42px;
}
.login-form .text-content h3{
    color: #100A0A;
}
.login-pass-wrapper{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 24px;
    align-items: center;
}

.back-to-signup a{
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    text-decoration: underline;
}
.back-to-signup a:hover{
    color: var(--green);
    text-decoration: underline;
}
.back-to-signup a::after{
    content: "";
    position: relative;
    top: 3px;
    display: inline-flex;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-left: 6px;
    height: 15px;
    width: 15px;
    flex-shrink: 0;
    background-image: url(../images/back-icon.svg);
    transform: rotate(180deg);
}
.back-to-signup a:hover::after{
    background-image: url(../images/back-icon-green.svg); 
    transform: rotate(180deg);
}

.lost-password a{
   text-decoration: underline;
   transition: var(--transition);
   font-size: 14px;
}
.lost-password a:hover{
    color: var(--green);
    text-decoration: underline;
}
.login-pass-wrapper p{
    margin-bottom: 0px;
    position: relative;
}
.login-submit{
    margin-bottom: 30px !important;
}

.login-remember input{
    -webkit-appearance: none;
    line-height: normal;
}

.login-remember label {
    align-items: center;
    color: #2C2C2C;
    cursor: pointer;
    display: inline-flex;
    font-weight: 500;
    letter-spacing: 0;
    font-size: 14px;
    line-height: normal;
    position: relative;
    max-width: 100% !important;
}
.login-remember input:before {
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    content: "";
    cursor: pointer;
    display: inline-block;
    height: 18px;
    width: 18px;
    margin-right: 10px;
    position: relative;
    vertical-align: middle;
    flex-shrink: 0;
}

.login-remember input:checked:after {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    display: block;
    height: 10px;
    left: 7px;
    position: absolute;
    top: 5px;
    transform: rotate(45deg);
    width: 5px;
}

.login-remember input:checked:before {
    background-color: var(--purple);
    border-color: transparent;
}
.login .forgetmenot{
    display: flex;
    align-items: center;
}