.bg-image-wrapper {
  position: relative;
  height: 100vh;
  background: url("../../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("../../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-color: rgba(0, 0, 0, 0);
  /* Dark overlay */
}

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