.login-page {
    background: url('../images/Track_Dozer.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    position: relative;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.login-page .container {
    position: relative;
    z-index: 1;
}

.login-page .login-box,
.login-page .register-box {
    background-color: rgba(4,43,58,0.95);
    max-width: 400px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* Logo above the login form */
.login-logo {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 60%;
    height: auto;
}
