.otp-input {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.otp-input__digit {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #557a9d;
  border: none;
  border-radius: 8px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.otp-input__digit::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.otp-input__digit:focus {
  /* box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4); */
}

.otp-input__digit::-webkit-outer-spin-button,
.otp-input__digit::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.otp-input__digit[type='tel'] {
  -moz-appearance: textfield;
}
