@charset "UTF-8";
/**
 * Form element styles
 */
/**
* @file
* Common dependencies for all theme stylesheets (both global and component specific)
*/
/**
* @file
* Functions
*
* Defines reusable Sass functions that perform calculations or transformations (e.g.,
* color manipulation, scaling values).
*/
/**
 * @file
 * Color functions
 */
/**
* @file
* Tier 1 - Primitive Color Variables
*
* Contains the color design tokens assigned to our aliases.
* These variables are the raw, unchanging values used to define the core visual language of the project.
*/
/**
* @file
* Convert values into rem units.
* Only `px` values are converted to rem.
* ! Use CSS variables whenever possible
* defines the base font size in a way that is understandable by Sass functions
*/
/**
* @file
* Mixins
*
* Contains imports for reusable Sass mixins that encapsulate common patterns or logic, such as
* responsive styles, vendor prefixes, or utility functions.
*/
/**
* @file
* Breakpoints
*
* Defines CSS variables for responsive design breakpoints used throughout the project.
*/
/**
* @file
* Container Mixins
*
* Contains mixins for containers that can be applied on a component level when their associated utility class is applied
*/
/**
* @file
* Container Variables
*/
/**
 * @file
 * Global typography for site
*/
/**
* @file
* Typography
*
* Defines CSS variables and styles related to typography, including font families,
* sizes, weights, line heights, and letter spacing.
*/
/**
* @file
* Type SCSS variables for spacing system
*/
/* === Font Stacks === */
/* === Font Weights === */
/* === Letter Spacing === */
/* === Line Heights === */
/* A single line value will be used for type. The largest value was selected based on comparing between mobile and desktop. */
/* === Font Sizes === */
/* Min / Mobile */
/* Max / Desktop */
/* Font Size / Fluid Units
* Resource: Utopia Clamp Calculator
* @link https://utopia.fyi/clamp/calculator?a=320,1440,92—104|64—88|52—64|48—60|32—40|16—20
*
* viewport values from utopia clamp calculator
* values without clamp are the same for mobile and desktop
*/
/*
 Preset typography
*/
/**
* @file
* Utility Mixins
*/
/**
* @file
* Container Mixins
*
* Contains mixins for containers that can be applied on a component level when their associated utility class is applied
*/
/**
* @file
* Variables
*/
/**
* @file
* Type SCSS variables for transition durations.
*/
/**
* @file
* Typography
*
* Defines CSS variables and styles related to typography, including font families,
* sizes, weights, line heights, and letter spacing.
*/
/**
* @file
* SCSS variables for radii
*/
/**
* @file
* Typography
*
* Defines CSS variables and styles related to typography, including font families,
* sizes, weights, line heights, and letter spacing.
*/
/**
 * @file
 * Global typography for site
*/
/**
* @file
* Z-Index
*
* Source of truth for z-index values used throughout the theme.
*/
/**
* @file
* SCSS variables for miscellaneous items
*/
/**
* @file
* Common dependencies for all theme stylesheets (both global and component specific)
*/
/**
 * Tabs/tab as seen on the search page.
 * Pattern reference: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/tab_role#example
 */
/**
 * Styles for "No Results" message to be displayed when 0 results are returned initiating 
 * a search from the Nav, or when 0 results are returned using filters
 */
/**
* @file
* Utility Mixins
*/
:root {
  --dropdown-inline-size: 15rem;
}
@media (min-width: 768px) {
  :root {
    --dropdown-inline-size: 18.125rem;
  }
}

:where(.form-item, .form-actions) {
  display: block;
  max-block-size: -moz-fit-content;
  max-block-size: fit-content;
  max-inline-size: 26.25rem;
}

.form-item :where(input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=number]),
select.form-select {
  background-color: var(--surface-primary);
  block-size: -moz-fit-content;
  block-size: fit-content;
  border-radius: 1.5rem;
  border: 0.125rem solid var(--border-primary);
  color: var(--text-primary);
  font-family: Knockout53, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.5rem 0.75rem;
}
.form-item :where(input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=number]):hover, .form-item :where(input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=number]):focus,
select.form-select:hover,
select.form-select:focus {
  border-color: var(--border-focus);
  outline: none;
}
.form-item :where(input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=number])::-moz-placeholder, select.form-select::-moz-placeholder {
  color: var(--text-disabled);
  text-transform: uppercase;
}
.form-item :where(input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=number])::placeholder,
select.form-select::placeholder {
  color: var(--text-disabled);
  text-transform: uppercase;
}

.form-item :where(label[for]) {
  color: var(--text-primary);
  display: block;
  font-family: Knockout53, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.1125rem;
  line-height: 1rem;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
}

.form-input-container {
  margin-bottom: 1rem;
  position: relative;
}

form[action^="/user/"] {
  color-scheme: light dark;
  display: grid;
  row-gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
  margin: 1rem auto;
  padding: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  display: grid;
  grid-template-columns: 1fr min(78rem, 100% - 1rem * 2) 1fr;
}
form[action^="/user/"] > * {
  grid-column: 2;
}
form[action^="/user/"] :is(.form-item, .form-actions, .form-text) {
  display: block;
  margin: 0;
  max-inline-size: 100%;
}
form[action^="/user/"] .form-actions[data-drupal-selector=edit-actions] {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
form[action^="/user/"] :where(input[type=submit]), form[action^="/user/"] .button.dialog-cancel {
  background-color: var(--surface-primary);
  border: none;
  border-radius: 3.75rem;
  color: var(--text-primary);
  cursor: pointer;
  font-family: Knockout53, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  margin: 0;
  padding: 1rem 1.75rem;
  position: static;
  text-transform: uppercase;
}
form[action^="/user/"] .button.dialog-cancel {
  text-decoration: none;
  letter-spacing: 0.13125rem;
}
/*# sourceMappingURL=../maps/base/form.css.map */
