body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Tahoma, Verdana, Arial, sans-serif;
    overflow: auto;
    position: relative; /* Establish positioning context */
    background-color: rgba(91, 93, 10, 0.7);
}
/* Background pseudo-element with filters */
body::before {
    content: "";
    position: fixed; /* Fixed so it covers the whole viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://deploy.vlsa.com.au/assets/background.jpg') no-repeat center center;
    background-size: cover;
    filter: brightness(30%);
    opacity: 0.6;
    z-index: -1;
}
.container {
    position: absolute;
    left: 70%;  /* Position container 75% from the left on larger screens */
    top: 50%;   /* Vertically center it */
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 1);
    width: 290px;
}
/* On mobile, center the container */
@media (max-width: 768px) {
    .container {
        left: 50%;
    }
}
.logo {
    max-width: 290px;
    margin-bottom: 10px;
}
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}
.input-group {
    margin: 10px 0;
}
input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
button,
.sso-buttons button {
    width: 100%;
    padding: 10px;
    background: #5B5D0A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-family: Verdana, sans-serif;
    text-align: center;
}
.sso-buttons button {
    background: white;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    position: relative;
}
.sso-buttons img {
    width: 20px;
    position: absolute;
    left: 10px;
}
.signup-container {
    margin-top: 20px;
    text-align: center;
}
.signup-button {
    width: 100%;
    padding: 10px;
    background: #5B5D0A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: Verdana, sans-serif;
    text-align: center;
}
.divider {
    width: 100%;
    border: none;
    height: 1px;
    background-color: black;
    margin: 20px 0;
}
#errorModal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
#errorModal .modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 280px;
    margin: 150px auto;
    text-align: center;
}
#errorModal .modal-content button {
    margin-top: 15px;
    width: 100%;
    background: #5B5D0A;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}
.page-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.5rem 0;
    background: transparent;
    color: #666;            /* adjust for contrast if needed */
    box-sizing: border-box;
}

.page-footer a {
    color: inherit;
    text-decoration: none;
}

.page-footer a:hover {
    text-decoration: underline;
}