.bg-image-wrapper {
  position: relative;
  height: 100vh;
  background: url("/portal/ui-assets/images/login/bg_image.png") center
    center/cover no-repeat;
}

/* Using a pseudo-element for the overlay */
.bg-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 0;
}

.left-column-bg {
  background: url("/portal/ui-assets/images/login/login_card.jpg") center
    center/cover no-repeat;
  position: relative;
}

/* Added a pseudo-element for the left column's overlay as well */
.left-column-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(233, 45, 40, 0.35) 0%,
    rgba(10, 5, 5, 0.55) 100%
  );
}

.card-custom {
  max-width: 900px !important;
  min-height: 550px !important;
  height: 500px !important;
}
