.snap-otp-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
}

.snap-otp-input, .snap-otp-recovery {
  flex:1;
  width:50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  color: #555;
  background-color:#f2f2f2;
  font-weight:700;
}

.snap-otp-input:focus {
  background-color:#fff;
  border-color: #999;
  color: #333;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.0);
}

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

.snap-otp-input {
  -moz-appearance: textfield;
  appearance: textfield;
}

.snap-otp-recovery {
  height: 50px !important;
}