#formEdit {
  margin: 0 auto;
  max-width: calc(var(--menuWidth) + var(--max-info-width));
  position: relative;
}

.banner {
  display: none;
}

#articleForm {
  width: 50%;
  margin: 0 auto;
}

input[type=text], input[type=email] {
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--mainColor);
  outline: none;
  width: 100%  !important;
  font-size: 17px;
}

select {
  background-color: #e1dedc;
  border: solid 1px var(--text-gray);
  border-radius: 0;
  width: 100%;
}

textarea {
  border: 2px solid var(--mainColor) !important;
  background: none;
  resize: none;
  width: 100%;
  margin-top: 0.5em;
  outline: none;
  font-size: 17px;
  margin-top: 1em;
}

.bannerImg {
  width: 8em;
}

.hide {
  display: none;
}

.btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btns .delete {
  text-decoration: none;
  background: #ab0319;
}

form {
  width: 30em;
  margin: auto;
}

.addSchedule, .addimg, .deleteSchedule {
  cursor: pointer;
}

table a {
  color: blue;
}

@media screen and (max-width: 800px) {
  #articleForm {
    width: 70%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 470px) {
  #articleForm {
    width: 90%;
    margin: 0 auto;
  }
  .bannerImg {
    width: 4em;
    height: auto !important;
  }
  form {
    width: 100%;
  }
}

