.background-login {
    width: 100vw;
    height: 100vh;
    background: url('../images/branding/background_desktop_1920_1080.jpg') no-repeat center center;
    background-size: 100% 100%; /* ⚠️ This stretches the image */
}

@media (max-width: 768px) {
  .background-login {
    background: url('../images/branding/background_mobile_2.jpg') no-repeat center center;
    background-size: cover; /* cover the mobile viewport */
  }
}

.login-logo {
    max-width: 100%;
    height: auto;
    max-height: 180px; /* Limit the height */
    width: auto;
}
