 #customAlert {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  .alert-box {
    background: white;
    padding: 20px;
    border-radius: 6px;
    width: 320px;
    max-width: 90%;
    margin: 150px auto;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
  }

  .alert-box.success {
    border-left: 5px solid #28a745;
  }

  .alert-box.error {
    border-left: 5px solid #dc3545;
  }

  .alert-box.warning {
    border-left: 5px solid #ffc107;
  }

  #alertIcon {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
  }

  .alert-box button {
    margin-top: 10px;
    padding: 8px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .alert-box button:hover {
    background: #0056b3;
  }
  
.otp-container {
  display: flex;
  justify-content: center;
  gap: 10px; /* Adjust spacing between input fields */
  margin-bottom:35px;
}

.otp-input {
  width: 40px; /* Adjust width as needed */
  height: 40px; /* Adjust height as needed */
  text-align: center;
  font-size: 1.5em;
  border: 1px solid #ccc;
  border-radius: 5px;
}