/** Shopify CDN: Minification failed

Line 55:19 Expected identifier but found whitespace
Line 55:21 Unexpected "{"
Line 55:30 Expected ":"
Line 56:8 Expected identifier but found whitespace
Line 56:10 Unexpected "{"
Line 56:19 Expected ":"

**/


/* CSS from section stylesheet blocks */
.contact-form {
  max-width: calc(100% - 4rem / var(--font-body-scale));
  margin: 0 auto;
}
  @media (min-width: 800px){
  .contact-form {
  max-width: calc(80% - 4rem / var(--font-body-scale));
  margin: 0 auto;
}
  }
  
.form-field {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

.required {
  color: red;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-field-button {
  text-align: center;
}

button[type="submit"] {
  background-color: {{ section.settings.button_background_color }};
  color: {{ section.settings.button_text_color }};
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 50%;
}

.contact-form h2 {
  text-align: center;
}
  
.radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.radio-option label {
  margin-left: 5px;
}