/* Import Google font - Poppins */
.otp-container-wap {
  position:absolute;
  top:0;
  left:0;
  background-color:#064180;
  width:100%;
  height:100%;
  display: flex;
    justify-content: center;
    align-items: center;
}
:where(.otp-container, form, .input-field, header) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.otp-container {
  background: #fff;
  padding: 20px 20px;
  border-radius: 12px;
  row-gap: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  max-width:350px;
}
.otp-container form p {
  font-size: 12px;
    font-style: italic;
    color: red;
    margin-top: 5px;
}
.otp-container header {
  height: 65px;
  width: 65px;
  background: #064180;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
    justify-content: center;
    align-items: center;
}
.otp-container header i {
  font-size:30px
}
.otp-container h4 {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
}
form .input-field {
  flex-direction: row;
  column-gap: 10px;
}
.input-field input {
  height: 60px;
  width: 60px;
  border-radius: 6px;
  outline: none;
  font-size: 2rem;
  text-align: center;
  border: 1px solid #ddd;
}
.input-field input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.input-field input::-webkit-inner-spin-button,
.input-field input::-webkit-outer-spin-button {
  display: none;
}
form button.xac-nhan {
  margin-top: 25px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  border: none;
  padding: 9px 0;
  cursor: pointer;
  border-radius: 6px;
  pointer-events: none;

  background: #064180;
  transition: all 0.2s ease;
}

form button.xac-nhan.active {
  background: #00bc69;
  pointer-events: auto;
}

form button:hover {
  background: #00bc69;
}
