footer{
    display: none;
}
body{
    padding-top: 110px;
}
.header-login{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: #1CB0F6;
    z-index: 1000;
}
.header-login .header-login-content{
    max-width: 810px;
    margin: 0px auto;
    padding: 0px 20px 0px;
}
.header-login .left{
    width: 130px;
    float: left;
}
.header-login .left a{
    display: block;
    padding-top: 18px;
}
.header-login .left span {
    display: block;
    width: 92.732px;
    height: 40.6px;
    background: url(../images/menu.svg) 0px -3180px;
    margin-top: 20px;
}
.header-login .right{
    width: calc(100% - 130px);
    float: right;
    max-width: 325px;
}
.header-login .right span{
    color: #fff;
    text-align: center;
    float: left;
    display: block;
    width: calc(100% - 115px);
    font-size: 20px;
    font-family: 'balootammabold';
    line-height: 20px;
    margin-top: 50px;
}
.header-login .right img{
    float: right;
    width: 115px;
    margin-top: 12px;
    display: inline-block;
}
.header-login .right img.img-mobile{
    display: none;
}

.password-content{
    max-width: 403px;
    margin: auto;
    padding: 60px 15px;
}
.password-content .password-form h1{
    font-size: 23px;
    text-align: center;
    font-family: 'balootammabold';
    margin: 0;
}
.password-content .password-form h4{
    text-align: center;
    color: #777777;
    font-size: 15px;
    margin: 12px 0px 0px;
}
.password-form input[type="email"]{
    display: block;
    width: 100%;
    height: 49px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    font-size: 15px;
    font-family: balootammamedium;
    padding-left: 15px;
    background: #F7F7F7;
    margin-top: 20px;
    color: var(--color-text);  
}
.password-form input[type="email"]::placeholder{
    font-size: 15px;
    color: var(--color-text-light);
}

.password-form input[type="email"]:focus{
    outline: none;
    border-color: var(--color-blue);
    box-shadow: none;
}
.password-form .password-group{
    position: relative;
}
.password-form .forgot-password{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 17px;
    font-family: promtsemibold;
    color: var(--color-text-light);
}
.password-form button{
    width: 100%;
    max-width: 100%;
    background: #1CB0F6;
    color: var(--color-white);
    text-transform: uppercase;
    margin-top: 30px;
    height: 49px;
    line-height: 50px;
    border: 0;
    border-bottom: 4px solid #1899D6;
    font-family: 'balootammabold';
}
.password-form button:focus{
    outline: none;
    box-shadow: none;
}
.password-form button:hover{
    webkit-filter: brightness(1.1);
    filter: brightness(1.1);
}

.password-message h5{
    text-align: center;
    font-size: 23px;
    font-family: promtbold;
    color: var(--color-text-dark);
}

.menu-item-logo span{
    display: block;
    width: 92.732px;
    height: 40.6px;
    background: url(../images/menu.svg) 0px -3180px;
    
}
@media(max-width: 767px){
    .header-login .right img{
        display: none;
    }
    .header-login .right span{
        display: none;
    }
    .header-login .right img.img-mobile {
        display: inline-block;
        margin-top: 27px;
    }
    .header-login{
        height: 80px;
    }
    body {
        padding-top: 80px;
    }
    .header-login .left span{
        transform: scale(0.75);
        margin-top: 5px;
        margin-left: -10px;
    }
    .login-content {
        padding: 35px 15px;
    }
}