// OTP Timer functionality
// Send OTP
// Verify OTP
// Check if OTP is verified
// Name validation
// Organization validation
// Member validation
// Email validation
// GST Number validation (removed required check)
// ICSI Number validation (removed required check)
// Designation validation (removed required check)
// GST format validation: 15 alphanumeric characters with at least one letter and one digit
//var gstReg = /^(?=.*[A-Z])(?=.*\d)[A-Z0-9]{15}$/;
// ICSI format validation: Example format (ICSI/1234/2020)
// var icsiReg = /^ICSI\/\d{4}\/\d{4}$/;
var icsiReg = /^[a-zA-Z0-9]+$/; // Allow both alphanumeric and numbers without any specific format