.infodatawrap {
  display: flex;
}

.userloginbox {
  background: #056cb8;
  padding: 50px 30px;
  text-align: center;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

.userloginbox:before {
  background-color: #fff;
  opacity: 0.1;
  width: 1000px;
  height: 1000px;
  position: absolute;
  left: -300px;
  bottom: 30px;
  content: "";
  border-radius: 50%;
  animation: pulse-animation 6s infinite;
}

.userloginbox:after {
  background-color: #fff;
  opacity: 0.05;
  width: 1000px;
  height: 1000px;
  position: absolute;
  left: -200px;
  bottom: 30px;
  content: "";
  border-radius: 50%;
}

.userloginbox .viewallbtn {
  margin-top: 30px;
}

.userloginbox .viewallbtn a {
  background: #ffd302;
  color: #000;
}

.userloginbox .viewallbtn a:hover {
  background: #000;
  color: #fff;
}

.userloginbox p {
  max-width: 770px;
  margin: 0 auto;
  font-size: 16px;
}

.userloginbox .titleTop h3,
.userloginbox p {
  color: #fff;
}

.userloginbox h4 {
  color: #ffd302;
}

/* Employer Box */
.emploginbox {
  background: #ffd302;
  padding: 50px 30px;
  text-align: center;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

.emploginbox:before {
  background-color: #fff;
  opacity: 0.2;
  width: 1000px;
  height: 1000px;
  position: absolute;
  left: -300px;
  bottom: 30px;
  content: "";
  border-radius: 50%;
  animation: pulse-animation 6s infinite;
}

.emploginbox:after {
  background-color: #fff;
  opacity: 0.2;
  width: 1000px;
  height: 1000px;
  position: absolute;
  left: -200px;
  bottom: 30px;
  content: "";
  border-radius: 50%;
}

.emploginbox .viewallbtn {
  margin-top: 30px;
}

.emploginbox .viewallbtn a {
  background: #056cb8;
  color: #fff;
}

.emploginbox .viewallbtn a:hover {
  background: #fff;
  color: #056cb8;
}

.emploginbox p {
  max-width: 770px;
  margin: 0 auto;
  font-size: 16px;
}

.usrintxt {
  position: relative;
  z-index: 1;
}

/* âœ… Responsive Fix */
@media (max-width: 768px) {
  .infodatawrap {
    flex-direction: column;
  }

  .userloginbox,
  .emploginbox {
    flex-basis: auto;
    flex-grow: 0;
    width: 100%;
    min-height: auto;
    padding: 40px 20px;
  }

  .userloginbox h3,
  .emploginbox h3 {
    font-size: 26px;
    line-height: 1.3;
  }

  .userloginbox h4,
  .emploginbox h4 {
    font-size: 18px;
  }

  .userloginbox p,
  .emploginbox p {
    font-size: 15px;
  }
}