.digi-contact-form {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.digi-contact-field {
  display: grid;
  gap: 0.4rem;
}

.digi-contact-field label,
.digi-contact-single-check,
.digi-contact-choice-group label {
  font-weight: 600;
}

.digi-contact-field input,
.digi-contact-field textarea,
.digi-contact-field select {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid #c7d2d9;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.digi-contact-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.digi-contact-field input:focus,
.digi-contact-field textarea:focus,
.digi-contact-field select:focus {
  outline: 2px solid #1f7a8c;
  outline-offset: 2px;
}

.digi-contact-choice-group {
  display: grid;
  gap: 0.5rem;
}

.digi-contact-choice-group label,
.digi-contact-single-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.digi-contact-choice-group input,
.digi-contact-single-check input {
  width: auto;
  min-height: 0;
}

.digi-contact-submit {
  justify-self: start;
  min-height: 2.75rem;
  border: 0;
  border-radius: 6px;
  background: #12343b;
  color: #fff;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.digi-contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.digi-contact-success,
.digi-contact-error,
.digi-contact-field-error {
  margin: 0;
}

.digi-contact-success {
  color: #176b35;
}

.digi-contact-error,
.digi-contact-field-error {
  color: #b42318;
}

.digi-contact-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .digi-contact-submit {
    width: 100%;
  }
}
