﻿.footer-section {
    display: none;
}

/*header*/
.page-header-section {
    position: relative;
    padding-top: 80px;
    min-height: calc(100vh - 60px);
    background-color: #005b8e;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    background-image:url(../assets/login-bg.jpg);
    margin-top:60px;
}
 .page-header-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 20, 60, 0.6);
    top: 0px;
    left: 0px;
    z-index: 0;
}
.page-header-section > .inner-row {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
    align-items: center;
    height: 100%;
}

.login-box-holder{
    justify-content:center;
}
.login-box {
    width: 100%;
    max-width: 380px;
    padding: 20px 20px 20px;
    background-color: #fff;
    min-height: 60px;
    border-radius: 5px;
}

@media only screen and (min-width: 768px){
    .login-box-holder {
        justify-content: flex-end;
    }
}
@media only screen and (min-width: 992px){
    .page-header-section {
        margin-top: 0px;
    }
}