.create-cols-container {
  display: flex;
  gap: 32px;
  flex-direction: column;
  width: 100%;
  max-width: 960px;
  margin: auto;
}
@media (min-width: 640px) {
  .create-cols-container {
    flex-direction: row;
  }
  .col-1 {
    flex: 2;
  }
  .col-2 {
    flex: 1;
  }
}
input,
textarea {
  border: 1px dotted grey;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  font-size: 1.25rem;
  color: var(--black-color);
  background-color: transparent;
}
input[type="text"] {
  font-family: Baskerville, serif;
  font-size: 2rem;
}
textarea {
  min-height: 600px;
  resize: vertical;
  field-sizing: content;
}
input::placeholder,
textarea::placeholder {
  color: var(--gray4-color);
}
input:focus,
textarea:focus {
  outline: 2px solid var(--black-color);
  border-color: transparent;
}
#add-another-lang {
  font-size: 0.875rem;
  cursor: pointer;
  color: red;
  font-weight: bold;
}
#publish {
  font-size: 1rem;
  background: var(--black2-color);
  color: var(--white-color);
  padding: 10px;
  border-radius: 5px;
  width: fit-content;
  cursor: pointer;
}
.selector-container {
  display: flex;
  justify-content: space-between;
}
.remove-lang {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: red;
}
.remove-lang:hover {
  text-decoration: underline;
}
