.base-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--contentWidth);
  margin-left: auto;
  margin-right: auto;
  gap: 2rem;
  padding: 2rem;
}

.base-form-content {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  padding: 2rem 0;
}

.base-form-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.base-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 2px;
  max-width: 300px;
  max-height: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  place-self: center;
}

.base-image > img {
  max-width: 100%;
  width: 100%;
  object-fit: contain;
  border: 1px solid transparent;
  border-radius: 2px;
  border: 1px solid transparent;
}

.base-form-inputs {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.base-form-input {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  gap: 1rem;
}

.base-button.small-base-button {
  border: 1px solid var(--primaryColorLight);
  width: auto;
}

.small-base-button {
  border: 1px solid var(--primaryColorLight);
  width: auto;
}

.small-base-button > svg {
  width: 18;
  height: 18;
}

.small-base-button > svg > path {
  fill: var(--blackColor);
}

.base-textarea-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 250px;
  min-width: 450px;
}

.base-textarea-container > textarea {
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.base-textarea-container > div {
  width: 100%;
}

.border-b-border {
  border-bottom: 1px solid var(--borderColor);
}

.base-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

@media (max-width: 640px) {
  .base-form-content {
    flex-direction: column;
  }

  .base-form-input {
    flex-direction: column;
  }
}
