export const passwordChars: { number: string; lower: string; upper: string; special: string } = {
    number: '0123456789',
    lower: 'abcdefghijklmnopqrstuvwxyz',
    upper: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
    special: '!@#$%^&*()-_=+[]{}\'";:/?\\|.>,<',
};
