Back to Blog
AccessibilityADAWCAGComplianceDigital

Accessibility Requirements for Digital Sweepstakes Entry Forms

Digital sweepstakes entry forms are subject to accessibility requirements under the ADA and state laws. This guide covers WCAG 2.1 AA compliance, common failures in entry forms, CAPTCHA alternatives, accessible official rules, and testing strategies.

Comprizant TeamMarch 9, 202617 min read

Digital sweepstakes entry forms exclude people with disabilities at a rate that should alarm every sponsor. Screen readers cannot parse unlabeled form fields. Keyboard-only users get trapped in CAPTCHA widgets. Low-vision users cannot distinguish form elements against low-contrast backgrounds. Timed entry forms expire before users with motor impairments can complete them.

This is not a niche concern. Approximately 27% of US adults have some form of disability, according to the CDC. Among internet users, the proportion with visual, motor, cognitive, or hearing disabilities is large enough that an inaccessible entry form meaningfully reduces participation — and creates legal exposure.

The legal framework is clear. The ADA, state civil rights laws, and the emerging consensus among courts and regulators all point in the same direction: digital experiences offered to the public, including sweepstakes entry forms, must be accessible to people with disabilities. The de facto standard is WCAG 2.1 Level AA.

Most brands treat accessibility as an afterthought. That is a lawsuit waiting to happen — and more importantly, it excludes real people from your promotion. Sponsors who build accessible entry forms get more participants, fewer legal complaints, and the basic satisfaction of not shutting out a quarter of the adult population.

This article is for informational purposes only and does not constitute legal advice. Consult with a qualified attorney for guidance specific to your promotion.

The Legal Framework

Several overlapping laws and standards govern digital accessibility for sweepstakes.

ADA Title III

The Americans with Disabilities Act Title III prohibits discrimination on the basis of disability in places of "public accommodation." When the ADA was enacted in 1990, "public accommodation" meant physical locations — restaurants, hotels, retail stores. Since then, federal courts have increasingly interpreted Title III to cover websites and digital experiences.

The legal landscape is not perfectly settled. Some circuits have held that a website must be connected to a physical location to fall under Title III; others have held that websites are independently covered. But the trend is clear, and the practical guidance is unambiguous: major brands treat their websites as subject to ADA Title III, and DOJ statements have consistently affirmed this interpretation.

For sweepstakes sponsors, the implication is that entry forms available to the general public should be accessible. An inaccessible entry form is, functionally, a "No Entry" sign for people with certain disabilities.

Section 508

Section 508 of the Rehabilitation Act applies to federal agencies and organizations that receive federal funding or contract with the federal government. If your brand runs promotions in connection with a government contract or partnership, Section 508 applies directly. Section 508 references WCAG 2.0 Level AA as its technical standard.

State Laws

Several states have their own digital accessibility laws. California's Unruh Civil Rights Act is the most significant — it provides strong protections against disability discrimination and has been applied to websites. Unruh Act claims carry statutory damages of $4,000 per violation, which creates meaningful incentive for plaintiffs' attorneys.

New York, Illinois, and several other states have seen active website accessibility litigation. The volume of ADA website lawsuits has grown steadily — over 4,000 federal ADA website accessibility lawsuits were filed in 2023, and the trend continues upward.

WCAG 2.1 Level AA

The Web Content Accessibility Guidelines (WCAG) 2.1 Level AA is the de facto technical standard that courts, regulators, and settlement agreements reference. It is not itself a law, but it is the benchmark against which compliance is measured.

WCAG is organized around four principles: content must be Perceivable, Operable, Understandable, and Robust (POUR). Each principle contains specific success criteria at three levels: A, AA, and AAA. Level AA is the accepted target for web accessibility compliance.

What Makes a Sweepstakes Form Accessible

Accessibility is not a single feature. It is a set of design and development practices that make the form work for people using different input methods, output devices, and assistive technologies.

Keyboard Navigation

Every element of the entry form — every field, button, dropdown, checkbox, and link — must be reachable and operable using only the keyboard. No mouse required.

Tab order must be logical — pressing Tab should move focus through form elements in a predictable sequence that matches the visual layout. When an element receives keyboard focus, there must be a visible indicator (an outline, highlight, or similar) so the user knows where they are. Focus must never get stuck in any element; if a user tabs into a CAPTCHA widget, date picker, or dropdown, they must be able to tab out of it. And every interactive element — submit buttons, links to official rules, privacy policy links, opt-in checkboxes — must be reachable via keyboard.

Keyboard navigation is the foundation of accessibility. Screen reader users, people with motor impairments who use switch devices, and power users who prefer keyboards all depend on it.

Screen Reader Compatibility

Screen readers (JAWS, NVDA, VoiceOver) convert on-screen content to synthesized speech or Braille output. For a screen reader to correctly convey a form, the form must be properly structured in the HTML.

  • Every form field must have a label. The <label> element must be programmatically associated with its <input> using the for attribute. A visually displayed label that is not associated in the HTML is invisible to screen readers.
  • ARIA attributes where needed. For custom widgets that do not use native HTML form elements, ARIA (Accessible Rich Internet Applications) attributes communicate the element's role, state, and properties to assistive technology. A custom dropdown must have role="listbox", aria-expanded, and aria-selected attributes.
  • Logical reading order. The DOM order must match the visual order. Screen readers read the page in DOM order, not visual order. If CSS repositions elements visually while the DOM order is different, screen reader users get a confusing experience.
  • Error messages are associated with fields. When validation fails, the error message must be programmatically associated with the field it describes (using aria-describedby or aria-errormessage), not just displayed visually near the field.

Color and Contrast

  • Text contrast ratio of at least 4.5:1 against its background for normal text, and 3:1 for large text (18px or 14px bold). This is a WCAG 2.1 AA requirement.
  • Information is not conveyed by color alone. If a required field is indicated by a red border, there must also be a text indicator (asterisk, "Required" label) for users who cannot perceive color.
  • Error states use text, not just color. "Fields in red have errors" is insufficient. Error messages must describe the error in text.

Error Identification and Recovery

When a user submits a form with errors, the form must:

  • Identify the error clearly. State which fields have errors and what the error is — "Email address is required," not "There was an error."
  • Preserve entered data. Do not clear all fields on an error. Users with disabilities may take significantly longer to complete a form; clearing their progress on an error is a serious usability failure.
  • Move focus to the error. After submission fails, move keyboard focus to the first error or to an error summary at the top of the form. Do not leave focus on the submit button with no indication of what went wrong.

Time Limits

If your entry form has a time limit — a session timeout, a countdown timer, or an expiration — users must be able to extend it. WCAG 2.1 requires that users can turn off, adjust, or extend time limits, with limited exceptions.

People with cognitive disabilities, motor impairments, or those using screen readers may take significantly longer to complete a form. A 5-minute session timeout that is reasonable for most users may be an insurmountable barrier for someone using a switch device or screen reader.

CAPTCHA

CAPTCHA is the single biggest accessibility barrier in sweepstakes entry forms. Visual CAPTCHAs (identifying traffic lights, crosswalks, or distorted text) are inaccessible by design to users who are blind or have low vision.

WCAG 2.1 requires that if a CAPTCHA is used, an alternative form must be available. Options include:

  • Audio CAPTCHA — An audio challenge that the user can listen to and respond to. This helps blind users but not deaf-blind users.
  • Logic puzzles — Simple text-based challenges ("What is 3 + 4?") that screen readers can convey. These are weaker against bots but more accessible.
  • Invisible verification — Services like Cloudflare Turnstile that verify users based on behavior and device signals without requiring the user to solve a visual challenge. Turnstile is designed to be accessible and does not present visual puzzles under normal conditions.

The old-style "type the distorted letters" CAPTCHA is effectively obsolete for both accessibility and security reasons. Modern alternatives provide better bot protection with fewer accessibility barriers.

Common Accessibility Failures in Sweepstakes Forms

These are the failures we see most often in promotional entry forms.

Unlabeled Form Fields

The most fundamental failure. An entry form with fields for name, email, and address that uses placeholder text instead of <label> elements. Placeholder text disappears when the user starts typing, leaving them with no indication of what the field is for. Screen readers may not announce placeholder text at all.

Fix: Use <label> elements associated with each input via the for attribute. Placeholder text is a supplement to labels, not a replacement.

Inaccessible CAPTCHA Without Alternatives

A visual CAPTCHA with no audio alternative and no other verification option. This completely blocks blind and low-vision users from entering the sweepstakes.

Fix: Use Cloudflare Turnstile or a similar invisible verification service. If a visual CAPTCHA is necessary, provide an audio alternative at minimum.

Poor Color Contrast

Light gray text on a white background, or white text on a light teal background. These are common in entry forms that prioritize visual aesthetics over readability. Users with low vision, color blindness, or those viewing the form in bright sunlight cannot read the content.

Fix: Test all text elements against their backgrounds using a contrast checker. Verify 4.5:1 ratio for normal text, 3:1 for large text.

Keyboard Traps

Custom date pickers, multi-step form widgets, and CAPTCHA modules that capture keyboard focus and do not release it. The user tabs into the widget and cannot tab out — they are stuck.

Fix: Test keyboard navigation through every interactive element. Confirm that Tab moves forward and Shift+Tab moves backward through all elements without trapping focus.

Auto-Advancing Forms Without Pause

Multi-step entry forms that auto-advance to the next step on a timer, or that auto-submit when all fields are filled. Users with motor impairments or cognitive disabilities may need more time to review their entries before proceeding.

Fix: Let users advance manually by pressing a "Next" or "Submit" button. Do not auto-advance on a timer.

Pop-ups That Cannot Be Dismissed Via Keyboard

Modal dialogs (age verification, terms acceptance, cookie consent) that can only be closed by clicking an X button with a mouse. Keyboard users cannot dismiss the modal and cannot access the form behind it.

Fix: Modals must be dismissible with the Escape key. Focus should be trapped within the modal while it is open (not behind it), and a visible close button must be keyboard-accessible.

PDF Official Rules as Scanned Images

Official rules published as a scanned PDF — essentially a photograph of a document. Screen readers cannot extract text from image-based PDFs. The rules are completely inaccessible to blind users.

Fix: Publish official rules as tagged PDFs (with selectable text and proper heading structure) or as accessible HTML pages. See our guide to official rules for format recommendations.

Missing Mobile Accessibility

Entry forms that are technically accessible on desktop but fail on mobile — touch targets that are too small, forms that do not zoom properly, or content that is cut off on smaller screens.

Fix: Touch targets must be at least 44x44 pixels (WCAG 2.1 recommendation). Test with pinch-to-zoom enabled, and verify the form renders completely on common mobile screen sizes.

AMOE and Accessibility

The alternative method of entry (AMOE) has an interesting relationship with accessibility.

Mail-in AMOE provides an inherent accessibility backstop for participants who cannot use a digital entry form — they can enter by mail without interacting with any digital interface. This does not satisfy the legal obligation to make the digital form accessible, but it does provide a practical entry path for participants who face digital barriers.

Phone-based AMOE (calling a number to enter) provides a voice-based alternative that may be more accessible than a web form for some users.

However, AMOE is not a substitute for digital accessibility. The existence of a mail-in option does not excuse an inaccessible web form. The ADA requires that the digital experience itself be accessible — you cannot point to an offline alternative as justification for an inaccessible online experience.

Accessible Official Rules

The official rules document itself must be accessible, not just the entry form.

Tagged PDF

If rules are published as a PDF, the PDF must be "tagged" — meaning it has an underlying structure that screen readers can parse. Tags define headings, paragraphs, lists, and reading order. A tagged PDF created from a word processor or rules generation tool is accessible. A scanned PDF is not.

HTML Rules Page

The most accessible format for official rules is a well-structured HTML page with proper heading hierarchy (H1, H2, H3), semantic lists, and sufficient text contrast. HTML rules are natively accessible to screen readers, work on all devices, and can be resized without loss of content.

What to Avoid

Do not publish rules as scanned PDFs (images of text, not actual text) or as PDFs with no heading structure — a single block of unstructured text is nearly as bad as an image. Rules embedded in a promotional graphic with text overlaid are inaccessible. And while it should go without saying, Flash or other plugin-dependent formats still show up in legacy promotions that have never been updated.

Testing for Accessibility

Accessibility testing requires multiple methods. No single tool catches all issues.

Automated Testing

Tools like axe, WAVE, and the Lighthouse accessibility audit built into Chrome DevTools can scan a page and identify many common issues — missing labels, contrast failures, missing ARIA attributes, and structural problems.

Automated tools are fast and consistent, but they catch approximately 30% of WCAG violations. They excel at detecting machine-verifiable issues (contrast ratios, missing alt text, unlabeled inputs) but cannot assess subjective criteria (is the reading order logical? is the error message helpful?).

Run automated tests on every entry form before launch. Treat automated accessibility failures the same way you treat broken links — they must be fixed before the form goes live.

Manual Keyboard Testing

Navigate the entire entry form using only the keyboard. Tab through every field, activate every button, open and close every dropdown and modal. Verify that:

  • Focus order is logical
  • Focus is always visible
  • No keyboard traps exist
  • All interactive elements are reachable
  • Error messages are announced and focus moves appropriately

Keyboard testing takes 10 to 15 minutes per form and catches issues that automated tools miss entirely.

Screen Reader Testing

Test with at least one screen reader — VoiceOver on macOS/iOS, NVDA on Windows, or TalkBack on Android. Navigate the form as a screen reader user would:

  • Are all fields announced with their labels?
  • Are required fields identified?
  • Are error messages associated with their fields?
  • Can you complete and submit the form using only the screen reader?

Screen reader testing is the most revealing and the most commonly skipped. It is also the test most likely to uncover issues that would actually block a user with a disability from entering your sweepstakes.

User Testing

The gold standard is testing with actual users who have disabilities. This is not practical for every entry form, but for high-profile promotions with significant prize values, it is worth the investment. Users who rely on assistive technology daily will find issues that developers and automated tools miss.

Organizations like the National Federation of the Blind and various accessibility consulting firms can connect sponsors with testers who have relevant disabilities.

Common Mistakes

Treating Accessibility as Optional

Accessibility is a legal requirement, not a nice-to-have. Over 4,000 federal ADA website accessibility lawsuits were filed in 2023, and the trend line is still going up. Sweepstakes entry forms — which are explicitly offered to the general public — are squarely in scope. If your promotion is "open to all U.S. residents" but your form is unusable with a screen reader, those two statements contradict each other.

Relying Solely on Automated Testing

Automated tools catch fewer than a third of WCAG issues. A clean Lighthouse score does not mean the form is accessible. Manual keyboard and screen reader testing are essential.

Inaccessible CAPTCHA Without Alternatives

This remains the single most common accessibility barrier in entry forms. If your CAPTCHA has no alternative for blind users, a significant number of people cannot enter your sweepstakes.

PDF Rules as Scanned Images

Official rules that are photographs of documents are completely inaccessible to screen reader users. Use tagged PDFs or HTML.

No Keyboard Navigation Path

Custom-built entry forms that work perfectly with a mouse but are completely unusable with a keyboard. Every interactive element must be keyboard-operable.

Ignoring Mobile Accessibility

An entry form that passes accessibility testing on desktop but has tiny touch targets, broken zoom, or overlapping elements on mobile devices. Mobile accessibility matters — most sweepstakes entries come from mobile devices.

Retrofitting After Launch

Fixing accessibility after a promotion is live is harder and more expensive than building it in from the start. Accessibility should be a design requirement, not a post-launch patch.

How Comprizant Handles Accessibility

Comprizant's entry forms are built to meet WCAG 2.1 Level AA standards.

Semantic HTML. All form elements use proper HTML semantics — <label>, <fieldset>, <legend>, and ARIA attributes where native HTML elements are insufficient.

Keyboard navigation. Entry forms are fully navigable via keyboard, with logical tab order, visible focus indicators, and no keyboard traps.

Accessible CAPTCHA. Comprizant uses Cloudflare Turnstile for bot verification — a privacy-preserving, accessibility-oriented alternative to traditional visual CAPTCHAs that does not require users to solve visual puzzles.

Contrast compliance. All text elements in entry forms meet the 4.5:1 contrast ratio requirement for normal text and 3:1 for large text.

Accessible rules. Official rules generated by Comprizant's compliance engine are produced as structured, accessible documents — not scanned images.

Mobile-first design. Entry forms are designed for mobile devices first, with touch targets that meet WCAG sizing recommendations and full zoom support.

Key Takeaways

  1. Digital sweepstakes entry forms are subject to accessibility requirements. The ADA, state laws, and court precedent all point to the same conclusion: public-facing web forms must be accessible.

  2. WCAG 2.1 Level AA is the standard. Courts, regulators, and settlement agreements consistently reference WCAG 2.1 AA as the benchmark for web accessibility compliance.

  3. Keyboard navigation is the foundation. Every form element must be reachable and operable via keyboard alone. If your form fails this test, it fails accessibility.

  4. CAPTCHA is the biggest barrier. Visual CAPTCHAs without alternatives block blind and low-vision users. Use Cloudflare Turnstile or provide an audio/text alternative.

  5. Automated testing catches about 30% of issues. Supplement automated scans with manual keyboard testing and screen reader testing.

  6. Official rules must be accessible too. Tagged PDFs or HTML pages — never scanned images or unstructured PDFs.

  7. AMOE is not a substitute for digital accessibility. A mail-in entry option does not excuse an inaccessible web form.

  8. Build accessibility in from the start. Retrofitting is harder, more expensive, and less effective than designing for accessibility from day one.


Comprizant builds WCAG 2.1 AA compliant entry forms with accessible CAPTCHA, keyboard navigation, and screen-reader-compatible markup. Start your free account and launch sweepstakes that everyone can enter.