/* form reset */
input, button, select {
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 10px;
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
  color: #000;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: none;
  font: inherit;
  outline: none;
  resize: vertical;
  height: 200px;
  width: 100%;
  border-radius: 10px;
  color: #000;
}

.confirmtxt {
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
}

.confirmtxt + .confirmtxt {
  margin-top: 10px;
}

input[type='checkbox'], input[type='file'], input[type='radio'] {
  display: none;
}

input[type='submit'], input[type='button'] {
  cursor: pointer;
}

label, button {
  cursor: pointer;
}

select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* movie-form */
.title {
  font-weight: bold;
  margin-bottom: 0;
}

a {
  font-weight: bold;
  color: royalblue;
}

a:visited {
  font-weight: bold;
  color: royalblue;
}

#movie-form {
  font-size: 1.6rem;
  position: relative;
  padding: 5rem 0 0 0;
  backdrop-filter: brightness(0.15);
  -webkit-backdrop-filter: brightness(0.15);
  min-height: 100vh;
}

.detail-main {
  margin-bottom: 30px;
}

.movie-form {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 2px;
}

input + input {
  margin-top: 10px;
}

.form-item {
  margin-bottom: 20px;
}

.form-item-name label {
  font-weight: bold;
}

.form-item-btn {
  text-align: center;
}

.form-item-btn input {
  margin: 2.5rem auto;
  max-width: 300px;
  background-color: #000;
  border-radius: 5px;
  color: #fff;
}

.form-item-btn input.chgbtn {
  background-color: #555;
}

.file-btn, .upload-label {
  background-color: #555;
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
}

#movie-form #footer .inner {
  padding-top: 38px;
}

.bold {
  font-weight: bold;
}

.tac {
  text-align: center;
}

#movie-form select {
  display: block;
  position: relative;
  border-radius: 3px;
}

#movie-form select:after {
  content: '>';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  right: 0;
  -webkit-transform: translate(-50%, -50%) rotate(90deg) scaleY(1.75);
          transform: translate(-50%, -50%) rotate(90deg) scaleY(1.75);
  color: #3e3e3e;
  font-size: 28px;
  pointer-events: none;
  z-index: 2;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  opacity: .6;
}

#movie-form select.active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg) scaleY(1.75);
          transform: translate(-50%, -50%) rotate(-90deg) scaleY(1.75);
}

#movie-form select.active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg) scaleY(1.75);
          transform: translate(-50%, -50%) rotate(-90deg) scaleY(1.75);
}

.max-length-warning {
  color: red;
}

@media screen and (max-width: 768px) {
  body::before {
    display: none;
  }
  #movie-form {
    /*min-height: auto;
    min-height: initial;*/
    font-size: 1.4rem;
    padding: 2rem 0;
  }
  input {
    font-size: 1.6rem;
  }
  .movie-form {
    padding: 2rem;
  }
  .form-item-btn input {
    margin: 2rem auto 0;
  }
  #movie-form #footer .inner {
    padding-top: 30px;
  }
}
/*# sourceMappingURL=enq-form.css.map */