/* body {
  font-family: Arial, Helvetica, sans-serif;
} */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}

/* The Close Button */
.otpTitle {
  float: right;
  font-size: 24px;
  text-align: center;
  padding-top: 32px;
  width: 100%;
}

.modal-close-container {
  /* display: flex; */
  justify-content: flex-end;
  display: none;
}

.modal-close {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.modal-back-container {
  justify-content: flex-start;
  display: none;
}

.modal-back-container img {
  cursor: pointer;
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.modal-back-container img:hover {
  opacity: 1;
}

/* style.css */
.otpContainer_step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 450px;
  z-index: 99999;
  padding: 12px;
}

.purchase_step {
  display: none;
  text-align: center;
  padding: 12px;
}

.thank_step {
  display: none;
  text-align: center;
  padding: 12px;
}

.inputs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.input {
  width: 40px;
  border: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0.5);
  margin: 0 10px;
  text-align: center;
  font-size: 36px;
}

.input:focus {
  border-bottom: 3px solid orange;
  outline: none;
}

.input:nth-child(1) {
  cursor: pointer;
  pointer-events: all;
}

.otp_verifybtn {
  width: 90%;
  max-width: 350px;
}

.otp_verifybtn button {
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;

  background-color: white;
  color: black;
  border: 2px solid #04aa6d;
  border-radius: 8px;
  width: 100%;
}

.otp_verifybtn button:hover {
  background-color: #04aa6d;
  color: white;
}

@media screen and (max-width: 480px) {
  .otpTitle {
    font-size: 16px;
  }

  .input {
    width: 22px;
    font-size: 24px;
    margin: 0 4px;
  }

  .otpContainer_step {
    min-height: 380px;
  }

  .otp_verifybtn button {
    padding: 12px 24px;
    font-size: 14px;
  }
}