/* Shared styling for sandboxed demo specimens.
   These files intentionally do NOT load the EaseAccess24 widget SDK, so the
   widget cannot auto-remediate the broken examples. Neutral "generic website"
   look so the focus stays on the pattern, not on branding. */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
  background: #ffffff;
  color: #1a1a1c;
  padding: 20px;
  line-height: 1.5;
}
.wrap {
  max-width: 560px;
  margin: 0 auto;
}
.field {
  margin-bottom: 14px;
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
input,
select {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #c8ccd4;
  border-radius: 8px;
  font-family: inherit;
}
.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  background: #5a25d7;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 22px;
  cursor: pointer;
  font-family: inherit;
}
.hint {
  font-size: 0.82rem;
  color: #55606f;
  margin-top: 4px;
}
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.tag-bad {
  background: #fde8e8;
  color: #b42318;
}
.tag-good {
  background: #e6f7ee;
  color: #077a4b;
}
