.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 32px auto;
    width: min(320px, 70vw);
    height: auto;
    filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.55)) drop-shadow(0 0 40px rgba(30, 64, 175, 0.45));
}
