body {
    background-color: var(--secondary-light);
}

#imagem-lateral {
    width: 50%;
}

#imagem-lateral {
    background-image: url("../img/login_bg.jpg");
    background-size: cover;
    background-position: right;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#imagem-lateral img {
    z-index: 1;
}

#imagem-lateral::after {
    position: absolute;
    background-color: var(--primary-light);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    top: 0;
    left: 0;
}