h4#idRegistrationInfo {
  color: transparent !important;
  position: relative;
}

h4#idRegistrationInfo::before {
  content: "APPLICATION";
  position: absolute;
  left: 0;
  color: #333;
  font-size: 22px;
  font-family: 'Ubuntu', 'Arial', sans-serif;
  letter-spacing: 0.1em; /* adjust if needed */
}
/* Hide the original button text */
input.registerButton {
  color: transparent !important;
  font-size: 18px !important;
}

/* Overlay "Apply Here" text on top of the button */
.boxActionContainer {
  position: relative;
  display: inline-block;
}

.boxActionContainer::after {
  content: "Apply Here";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-family: 'Ubuntu Condensed', 'Arial', sans-serif;
  pointer-events: none;
  white-space: nowrap;
}