/* scrollbar design */
::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #172445;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #172445;
}


.navbar {
    background-color: #172445;
    padding: 10px 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%!important;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section{
    width: 20%;
}
.logo {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
}
.logo-img{
    width: 40%;
}
.nav-link{
    padding:0.5rem 1rem!important;
}
.nav-links {
    width: 80%;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
    font-size: 16px;
    letter-spacing: .3px;
    align-items: center;
    
}
.nav-links-form{
    width:100%;
}

.nav-links li {
    margin-right: 0px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: lightblue;
}

.burger,.burger-form {
    display: none;
    cursor: pointer;
}

.burger div,.burger-form div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: transform 0.3s ease;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    display: none;
}
.auth form .form-group label{
    font-size: 18px;
    color: #fff;
}
.input-group-append .input-group-text, .input-group-prepend .input-group-text{
    padding:18px 0.75rem;
}
.login-section{
    display: flex;
    align-items: flex-start;
    padding-top: 2em;
    justify-content: center;
}
.login-form{
    background: #00000061!important;
    border-radius: 10px;
    width: 65%!important;
    padding: 20px 50px!important;
    color: white;
}

.login-half-bg{
    display: flex!important;
    align-items: flex-end;
    justify-content: center;
}

.brand-logo{
    display: flex;
    justify-content: center;
}

.welcome-div{
    display: flex;
    height: 80vh;
    flex-direction: column;
    color: #fff;
}

.welcome-div>h1{
    font-size: 80px;
    font-weight: bold;
}
.welcome-div>h6{
    font-size: 40px;
    font-weight: 500;
}


.copyright-section{
    position: fixed;
    bottom: 0;
    background: #172445;
    left: 0;
    right: 0;
    padding: 20px 0;
}


/* style for form */
.login-avatar{
    width: 98px !important;
    position: absolute;
    top: 16rem;
}
.input-group-prepend.bg-transparent .text-primary{
    color: #fff!important;
}
.input-group-prepend.bg-transparent{
    border-radius: 5px 0 0 5px;
    border: unset;
}
span.input-group-text.bg-transparent.border-right-0{
    background: #172445!important;
    border-radius: 5px 0 0 5px;
    border: unset;
}
input#exampleInputEmail{
    border: unset;
    border-radius: 0 5px 5px 0;
}
@media screen and (max-width: 1000px) {
    .main-panel{
        padding-top:0px!important;
    }
    .container-scroller{
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .copyright-section{
        position:unset;
    }
    .row.flex-grow{
        width:100%;
        max-width:100%;
    }
    .logo-section{
        width:70%;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        text-align: center;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
        padding: 10px 0;
    }
    .nav-links-form{
        display: none;
        flex-direction: column;
        text-align: center;
        width: 100%;
        position: absolute;
        top: unset;
        left: 0;
        background-color: #333;
        padding: 10px 0;
    }
    .nav-links li a{
        color:#000;
    }
    .nav-links.active ,.nav-links-form.active {
        display: flex;
        z-index: 1;
        background: #fff;
        border:1px solid #000;
    }
    .nav-links-form.active{
        align-items: center;
    }
    .burger  ,.burger-form{
        display: block;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .overlay.active {
        display: block;
    }

    /* entire section */
    .login-section{
        align-content: center;
        gap: 30px;
    }
    .page-body-wrapper.full-page-wrapper{
        height: unset;
        max-height: 100vh;
    }
    /* heading */
    .logo-img{
        width: 100%;
    }
    .welcome-div>h1{
        font-size: 30px;
    }
    .welcome-div>h6{
        font-size: 26px;
    }

    .welcome-div{
        height: unset;
    }
    .login-avatar{
        top: 18em;
    }
    .login-half-bg{
        align-items: center;
    }
}