/* Do not edit anything below */
.image-form-section .image-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}
.image-form-section .image-column {
  background-color: rgba(103, 30, 58, 0.04);
  order: 2;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}
.image-form-section .image-column .img-responsive {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}
.image-form-section .form-column {
  display: contents;
}
.image-form-section .header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  order: 1;
  inline-size: 100%;
}
.image-form-section .label {
  background-color: rgba(103, 30, 58, 0.1);
  color: #671e3a;
  font-family: "Geist", -apple-system, blinkmacsystemfont, "avenir next", "avenir, segoe ui", "helvetica neue", helvetica, ubuntu, roboto, noto, arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.25rem;
  padding-inline: 0.5rem;
  border-radius: 0.25rem;
}
.image-form-section .heading {
  color: #080c11;
  margin: 0;
  font-family: Libre Baskerville, serif;
  font-size: clamp(1.5rem, 1.5rem + 1 * (100vw - 48rem) / 27, 2.5rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.8px;
}
.image-form-section .description {
  color: #080c11;
  font-family: Libre Baskerville, serif;
  font-size: clamp(1.125rem, 1.125rem + 0.25 * (100vw - 48rem) / 27, 1.375rem);
  font-weight: 400;
  line-height: 1.4;
}
.image-form-section .description p {
  margin: 0;
}
.image-form-section .description p + p {
  margin-block-start: 1rem;
}
.image-form-section .form-wrap {
  order: 3;
  inline-size: 100%;
}
@media (width >= 768px) {
  .image-form-section .image-form {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }
  .image-form-section .image-column {
    flex: 1 0 0;
    align-self: stretch;
    order: 0;
    min-inline-size: 0;
  }
  .image-form-section .form-column {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    inline-size: 100%;
    min-inline-size: 0;
  }
  .image-form-section .header {
    order: 0;
  }
  .image-form-section .form-wrap {
    order: 0;
  }
}
@media (width >= 1024px) {
  .image-form-section .image-form {
    gap: 5rem;
  }
}