/* OTP input field container */
.otp-input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  
  /* OTP input field */
  .otp-input {
    width: 100%;
    height: 40px;
    margin: 0 5px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 20px;
  }
  
  /* OTP input field when it has focus */
  .otp-input:focus {
    outline: none;
    border-color: #007bff;
  }
  
  /* OTP input field when it has a value */
  .otp-input:not(:placeholder-shown) {
    background-color: #f8f9fa;
  }