#authForm {
  background-color: #eee;
  width: 75%;
  border-radius: 10%;
  flex-direction: column;
  padding: 2rem 4rem;
  justify-content: space-around;
  display: none;
}

#imgForm {
  background-color: #eee;
  width: 75%;
  border-radius: 10%;
  flex-direction: column;
  padding: 2rem 4rem;
  justify-content: space-around;

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transform: scaleY(0);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}

#imgForm.open {
  max-height: 600px;
  opacity: 1;
  transform: scaleY(1);
}

.formHeading {
  font-size: 22px;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.formError {
  color: red;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  display: none;
}

.form_text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 55px;
}

.text_input {
  background-color: #bcbcbc;
  border: none;
  border-radius: 5px;
  color: #fff;
  height: 24px;
  padding: 5px;
}

.file_input {
  font-size: 16px;
}

.form_buttons {
  padding-top: 1rem;
  display: flex;
  justify-content: space-around;
}

.buttons {
  border: #ccc solid 1px;
  width: 100px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
  color: #3f3f3f;
  background-color: #dfdfdf;
}

#submitComment {
  margin-bottom: 0.5rem;
}
