/** Shopify CDN: Minification failed

Line 46:19 Expected identifier but found whitespace
Line 46:21 Unexpected "{"
Line 46:30 Expected ":"
Line 47:8 Expected identifier but found whitespace
Line 47:10 Unexpected "{"
Line 47:19 Expected ":"

**/
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

.form-field {
  margin-bottom: 20px;
}

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

.required {
  color: red;
}

input[type="text"],
input[type="email"],
input[type="tel"],
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;
}

@media (max-width: 767px) {
  select {
    font-size: 16px;
    background-color: #fff;
    color: #000;
  }
}