.garage-quote-form .ccm-dashboard-express-form fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "salutation salutation" "first-name last-name" "street street" "zip city" "country phone" "email email" "message message";
  grid-column-gap: 2rem;
}
.garage-quote-form .ccm-dashboard-express-form fieldset input,
.garage-quote-form .ccm-dashboard-express-form fieldset select,
.garage-quote-form .ccm-dashboard-express-form fieldset textarea {
  border: 1px solid rgba(40, 48, 63, 0.1);
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  background-color: #F5F5F5;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
.garage-quote-form .ccm-dashboard-express-form fieldset input::placeholder,
.garage-quote-form .ccm-dashboard-express-form fieldset select::placeholder,
.garage-quote-form .ccm-dashboard-express-form fieldset textarea::placeholder {
  font-style: normal;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(1) {
  grid-area: salutation;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(2) {
  grid-area: first-name;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(3) {
  grid-area: last-name;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(4) {
  grid-area: street;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(5) {
  grid-area: zip;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(6) {
  grid-area: city;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(7) {
  grid-area: country;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(8) {
  grid-area: phone;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(9) {
  grid-area: email;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(10) {
  grid-area: message;
}
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(11),
.garage-quote-form .ccm-dashboard-express-form fieldset > :nth-child(12) {
  display: none;
}
.garage-quote-form .ccm-dashboard-express-form label.error {
  font-size: 12px;
  font-weight: 600;
  color: #910000;
}
/*# sourceMappingURL=view.css.map */