<style>
/* Updated with new brand styling for microsite/landing page on Nov. 7. 2025 by A. McIntosh */

/* CSS Stylesheets used for the page styling. */
html {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background-color: transparent;
  color: #000000;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #000000 !important;
  font-size: 1rem;
  line-height: 1.4rem;
}

.container {
  width: 80%;
  max-width: 750px;
  margin: 0 auto;
  padding: 2em;
  background-color: transparent;
}

form.cmxform {
  border: none !important;
}

fieldset {
  border: none !important;
  padding-left: 0px !important;
  padding-right: 0 !important;
}

p {
  margin: 0 0;
}

p.terms {
  font-size: 0.9rem;
}

label {
  color: #000000;
  font-weight: 700;
  font-variation-settings: 'wght' 700;
  padding: 1.25rem 0 .25rem;
  display: block;
}
  
p:first-child > label {
  padding-top: 0;
}

.checkbox-inline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #000000;
  font-weight: 700;
  font-variation-settings: 'wght' 700;
  display: inline-block;
  !important
}

.error {
  color: red;
}

form {
  margin: .5em 0 .5em 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  padding: 1em;
  border: 1px solid #ccc;
  font-size: inherit;
  background-color: #ffffff;
  color: #000000;
  width: 100%;
  box-sizing: border-box;
  height: auto;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
.comment-field textarea:focus {
  outline: 2px solid #431a4e;
  outline-offset: 2px;
}

input[type=submit] {
  background: linear-gradient(90deg, #360D3B, #BD1C31, #360D3B);
  background-size: 200% 100%;
  background-position: 0% 50%;
  border: none;
  border-radius: none;
  min-width: 10em;
  padding: 0.5rem 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-variation-settings: 'wght' 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1em auto 0;
  color: #ffffff;
  transition: background-position 0.6s ease;
}

input[type=submit]:hover {
  background-position: 100% 50%;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

input[type=submit]:focus {
  outline: 3px solid #431a4e;
  outline-offset: 3px;
}

.hide {
  visibility: hidden;
  display: none;
}

/* Comment field styling */
.comment-field {
  position: relative;
}

.comment-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 20px;
  resize: none;
  border: 1px solid #ccc;
}

.comment-field #charCount {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 10px;
  color: #666;
}
/* checkbox edits */
input[type="checkbox" i] {
  width: 1rem;
  height: 1rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1.25rem 0 .25rem;
}

.checkbox-wrapper input[type="checkbox"] {
    flex-shrink: 0; /* prevents checkbox from shrinking */
}

.checkbox-wrapper label {
    flex: 1;
    word-wrap: break-word;
    padding: 0;
}

</style>