.login_left{
    background-image: url(../images/login-bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.login_left img{
    max-width: 100%;
    display: none;
}
.login_right{
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
}
.ptb-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
.login_right .login_head{
    margin-bottom: 40px;
}
.login_head h2{
    font-weight: 700;
    font-size: 38px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;

}
.login_head h2::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 5px;
    background-color: #0046c0;
    border-radius: 5px;
}
.login_head p{
    color: rgb(74, 111, 138);
    font-weight: 500;

}
.login_head p a{
    color: #0046c0;
    display: inline-block;
    /* transition: 0.5s ease; */
}
.login_head p a:hover{
    color: #111111;
}
.login_form .login_form_group{
    margin-bottom: 30px;
}

.login_form_group .form-control{ 
    height: 45px;
    padding-left: 20px;
    border: 1px solid #4a6f8a;
    font-size: 15px;
}
.login_form_group .form-control:focus{
    border: 1px solid #0046c0;
    box-shadow: none;
}
.login_form a{
    color: #4a6f8a;
    display: inline-block;
    border-bottom: 2px solid #0046c0;
    
}
.login_form a:hover{
    color: #0046c0;
}
.login_form .login_btn{
    color: #ffffff;
    background-color: #0046c0;
    width: 100%;
    display: block;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0px;
    margin-top: 5px;
    transition: 0.5s ease;
}
.login_form .login_btn:hover{
background-color:  #111111;
}
footer{
    padding-top: 100px;
    padding-bottom: 70px;
}
@media (max-width:991px) {
    .login_left img{
        display: inline-block;
        
    }
    .login_left{
        background-image: unset;
    }
    .login_right .login_head{
        margin-bottom: 35px;
    }
    .login_head h2{
        font-size: 26px;
        padding-bottom: 13px;
        margin-bottom: 13px;

    }
    .login_head h2::before{
        width: 60px;
        height: 3px;
    }
    .ptb-100{
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .login_head p , .login_head p a ,.login_form a{
    font-size: 15px;
    }
    .login_form .login_btn{
        font-size: 15px;
    }
    footer{
        padding-top: 70px;
        padding-bottom: 40px;
    }
}

@media (max-width : 768px) {
    .ptb-100{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .login_right .login_head{
        margin-bottom: 30px;
    }
    .login_head h2{
        font-size: 20px;
        padding-bottom: 10px;
        margin-bottom: 12px;
    }
    .login_head h2::before{
        width: 45px;
        height: 2px;
    }
    .login_head p , .login_head p a ,.login_form a , .login_form_group .form-control{ 
        font-size: 14px;
    }
    footer{
        padding-top: 50px;
        padding-bottom: 20px;
    }
}