html, body {
  height: 100%;
  margin: 0;
}

.bg-image {
  position: relative;
  background-image: url("bg-image.png");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* 🔧 adjust brightness */
  z-index: 0;
}

/* Make content appear above overlay */
.bg-image > * {
  position: relative;
  z-index: 1;
}

.center-form p, .center-form h4 {
    color: #525252; 
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

sup {
    color: red;
}

/* Desktop side columns */
.left-flex,
.right-flex {
  min-height: 100vh;
  width: 12%;
}

/* Tablet tweaks */
@media (max-width: 991px) {
  .right-flex {
    width: 14%;
  }

  .center-form {
    width: 80%;
  }
}

@media (max-width: 769px) {
  .mobile-img1 {
    width: 80px; 
    position: fixed;
    top: 0;
    left: 0;
  }

  .mobile-img2 {
    width: 80px; 
    position: fixed;
    top: 0;
    right: 0;
  }
}