.otp-inputs {
  gap: 10px;
  margin-bottom: 30px;
}

.otp-input {
  width: 40px;
  height: 50px;
  font-size: 24px;
  text-align: center !important;
  border: 2px solid #ddd !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 0 !important;
}

@media (max-width: 390px) {
  .otp-input {
    width: 35px;
    height: 45px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .otp-input {
    font-size: 18px;
  }
} 

.otp-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem var(--primary-color-transparent);
  outline: none;
}

#resendCode {
  margin-top: 20px;
}

#countdown {
  display: inline-block;
  min-width: 50px;
}
