
.otp-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
}
.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.otp-input:focus {
  border-color: #007bff;
}
