/* custom-style.css */
.login-page {
    background: url('/assets/img/bg-login.png') no-repeat center center fixed;
    /* background-size: cover; */
    background-size: 100% 100%;
                background-repeat: no-repeat;
                background-position: center center;
                height: 100vh;
                margin: 0;
                display: flex;
                justify-content: center;
                align-items: center;
}

.login-box {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    padding: 30px;
}
