@charset "UTF-8";
/*!
 * site.css (LucityCitizenPortalPCF) — GENERATED FILE. DO NOT EDIT DIRECTLY.
 * Source: src/main-pcf-site.scss
 *
 * Tiny "site chrome" stylesheet loaded on every PCF page (every env —
 * dev/test/prod) via a static <link> in VolusiaCountyPortals.master.
 * Centers the outer form container and softens the visual treatment of
 * required fields.
 *
 * Deliberately minimal — does NOT flatten positioning of inner controls.
 * Forms with a per-form CSS file (VCEP0AC.css, CFLAP011.css, …) layer
 * their full chrome on top via their _global.scss include; forms without
 * one fall back to Lucity's stock positioning with just these two tweaks.
 *
 * History: was `prod-site.css`, prod-only. After the env-unification
 * refactor (Jun 2026) every env uses the same surgical deploy model, so
 * the `prod-` qualifier no longer applies — same file, every env.
 */
#ctl00_phContent_ctl00 {
  display: block !important;
  margin: 0 auto !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

input:required,
input:invalid,
textarea:required,
textarea:invalid,
select:required,
select:invalid {
  background-color: #d6e4f2 !important;
  box-shadow: none !important;
  outline: none !important;
}