/*Login Page Start*/
#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: -10;
    cursor: pointer;
    display: block;
}

.login-box-msg{
    color: #b33939 !important;
    font-size: 15px;
}
.login-box{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px !important;
}

.login-top-line{
    background-color: #009432 !important;
    height: 6px
}

.btn-primary{
    background-color: #009432;
    border-color: #009432;
}

.btn-primary:hover {
    background-color: #b33939;
    border-color: #b33939;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom right, #009432 0%, #009432 100%);

}

::-webkit-scrollbar-track:horizontal {
    background-color: white;
    box-shadow: inset 0 0 2px 2px gainsboro;
}

/*Login Page End*/