.ccw-contact-form-wrap {
  width: 100%;
}

.ccw-contact-form {
  display: grid;
  gap: 1rem;
}

.ccw-contact-form__field {
  display: grid;
  gap: 0.4rem;
}

.ccw-contact-form__field label {
  color: #11243c;
  font-weight: 700;
}

.ccw-contact-form__field input,
.ccw-contact-form__field textarea {
  width: 100%;
  border: 1px solid #b9cbd8;
  border-radius: 0.7rem;
  background: #fff;
  color: #11243c;
  padding: 0.8rem 0.9rem;
  font: inherit;
  line-height: 1.5;
}

.ccw-contact-form__field textarea {
  min-height: 10rem;
  resize: vertical;
}

.ccw-contact-form__field input:focus,
.ccw-contact-form__field textarea:focus {
  outline: 0.18rem solid #0875b4;
  outline-offset: 0.12rem;
  border-color: #0875b4;
}

.ccw-contact-form__required {
  margin: 0;
  color: #5d6b7d;
  font-size: 0.9rem;
}

.ccw-contact-form__submit {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: #0875b4;
  color: #fff;
  padding: 0.8rem 1.25rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.ccw-contact-form__submit:hover {
  background: #082449;
}

.ccw-contact-form__notice {
  margin-bottom: 1.25rem;
  border: 1px solid;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
}

.ccw-contact-form__notice--success {
  border-color: #8bcbb9;
  background: #e9f8f3;
  color: #075b45;
}

.ccw-contact-form__notice--error {
  border-color: #e1abab;
  background: #fff1f1;
  color: #842029;
}

.ccw-contact-form__trap {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}

