/*-------------------------------------------Background Image---------------------------------------------*/
#bg {
  width: 100%;
  height: auto;
}

/*-------------------------------------------Redirect Button---------------------------------------------*/

.input-box-1 {
  position: absolute;
  top: 54.2%;
  left: 16.5%;
}

.input-box-1 input {
  width: 30%;
  font-size: 12px;
  border: none;
  outline: none;
  background: transparent;
}

.input-box-2 {
  position: absolute;
  top: 63.3%;
  left: 50%;
  width: 32%;
}

.input-box-2 input {
  width: 100%;
  font-size: 12px;
  border: none;
  outline: none;
  background: transparent;
}

.submit-btn {
  top: 73%;
  left: 16.5%;
  z-index: 99;
}

.submit-btn img {
  width: 37%;
  animation: pulse 0.9s infinite linear;
}

.btn {
  top: 72%;
  left: 16.5%;
  z-index: 999;
}

.btn input {
  width: 37%;
  height: 30px;
  border: none;
  outline: none;
  background: none;
}

/*-------------------------------------------Keyframe Animation---------------------------------------------*/
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/*-------------------------------------------Multi Device Screen Size---------------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #bg {
    height: 100vh;
  }
}
