.otp-container {
    display: flex;
    justify-content: flex-start;
    gap: 26px;
    margin-bottom: 18px;
   }
.otp-input {
  width: 45px;
  height: 50px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease-in-out;
}
.otp-input:focus {
  border-color: #000;
}
.otp-error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

.otp-success {
    color: green;
    font-size: 14px;
    margin-top: 10px;
}
@media (max-width: 600px) {
    .otp-container {
        gap: 5px !important;
    }
    .otp-input {
        width: 30px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
}
@media (min-width: 1024px) {
.otp-container {
    gap: 10px !important;
}
.otp-input {
    width: 50px !important;
    height: 55px !important;
    font-size: 20px !important;
}
}
.tooltip-inner {
    background-color: #2c271a !important;
    
}