/* CÓDIGO VERIFICADOR */

.otp-container{
  text-align: center;
  padding: 2rem 0;
}

.otp-wrapper {
  position: relative;
  width: fit-content;
  margin: 40px auto;
}

.otp-boxes {
  display: flex;
  gap: 12px;
}

.otp-box {
  width: 50px;
  height: 60px;
  font-size: 28px;
  border: 2px solid #ccc;
  border-radius: 8px;
  text-align: center;
  line-height: 60px;
  background: #fff;
}

#verifier-code {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

  .digit-box {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 5px;
    font-size: 28px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 6px;
    line-height: 50px;
    box-sizing: border-box;
    transition: border-color 0.2s;
    background-color: #f9f9f9;
  }

  .digit-box.active {
    border-color: #fb771a; /* cor azul do foco */
  }
  .digit-box.active::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 23px;
  width: 1px;
  height: 26px;
  background-color: #000;
  animation: blink182 1s step-end infinite;
}

@keyframes blink182 {
  50% {
    opacity: 0;
  }
}