﻿/*.login-page {
    background-image: url('/images/login_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 0px;    
}*/

.login-page {
    position: relative;
    margin-bottom: 0px;
    z-index: 1;
}

    /* Pseudo-element for background image with opacity */
    .login-page::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('/images/login_bg.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0.5; /* Adjust opacity as needed */
        z-index: -1;
    }



.login-body {
    padding: 1.25rem 1.25rem 4.25rem 1.25rem !important;
}
.login-box {width:450px !important;}