﻿


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.login-container {
    min-height: 100vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/images/GenericBackground.png') no-repeat center center;
    /*background-size: cover;  Ensures full image is shown */
    background-position: center center;
    background-attachment: fixed; /* Keeps the background fixed when scrolling */
}

