.form-inner {
  max-width: 800px;
  margin: 50px auto 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact-text th {
  font-size: 1.8rem;
  display: block;
  text-align: left;
  margin-bottom: 7px;
  color: #fff;
}
.contact-text th sub {
  vertical-align: text-top;
  color: #E3007F;
  font-size: 1.4rem;
}

.formTable {
  width: 100%;
}

.contact-text td {
  position: relative;
  display: flex;
  gap: 12px;
}
.contact-text td input {
  font-size: 2rem;
  padding: 26px;
  height: 70px;
  border: 1px solid #fff;
  background: #1b1b1b;
  color: #fff;
  width: 50%;
  line-height: 1;
  border-radius: 35px;
}
.contact-text td select {
  font-size: 2rem;
  padding: 26px;
  height: 70px;
  border: 1px solid #fff;
  background: #1b1b1b;
  color: #fff;
  width: 50%;
  line-height: 1;
  padding: 0 26px;
  width: 100%;
  border-radius: 35px;
}
.contact-text td.wide input {
  width: 100%;
}

.other-text td textarea {
  width: 100%;
  height: 300px;
  border: 1px solid #fff;
  background: #1b1b1b;
  color: #fff;
  padding: 26px;
  font-size: 2rem;
  border-radius: 35px;
  resize: vertical;
}

.form-btn {
  display: block;
  max-width: 350px;
  width: 100%;
  margin: 48px auto 0;
  background: #fff;
  color: #000;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 600;
  border-radius: 175px;
  font-family: "all-round-gothic", "M PLUS 1p", sans-serif;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}
.form-btn:hover {
  background: #E3007F;
  color: #fff;
}

.select-btn {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background: #626262;
  border-radius: 15px;
  pointer-events: none;
}
.select-btn::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #fff transparent transparent transparent;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.mail-detail {
  margin: 120px 0;
  background: #000f14 !important;
}

.secondary-heading {
  margin: 0 auto 40px;
  font-size: 3rem;
  color: #fff;
  text-align: center;
}

.mail-detail .note {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}
.mail-detail table.formTable {
  margin-bottom: 40px;
}
.mail-detail table.formTable td {
  color: #fff;
}
.mail-detail table.formTable th {
  background: #1b1b1b;
  color: #fff;
}
.mail-detail #formWrap {
  max-width: 700px;
  width: calc(100% - 32px);
  margin: 0 auto;
}

input:-webkit-autofill {
  background-color: #1b1b1b !important;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .form-inner {
    margin: 25px auto 0;
  }
  .contact-text th {
    font-size: 1.3rem;
  }
  .contact-text td {
    flex-direction: column;
  }
  .contact-text td input, .contact-text td select {
    padding: 13px;
    width: 100%;
    font-size: 1.3rem;
    height: 50px;
  }
  .contact-text th sub {
    font-size: 1rem;
  }
  .select-btn {
    right: 11px;
    width: 15px;
    height: 15px;
  }
  .select-btn::before {
    border-width: 4px 3.5px 0 3.5px;
  }
  .other-text td textarea {
    height: 190px;
    padding: 13px;
    font-size: 1.3rem;
  }
  .form-btn {
    margin: 24px auto 50px;
    max-width: 225px;
    font-size: 1.5rem;
    height: 50px;
  }
  .mail-detail {
    margin: 60px 0;
  }
}/*# sourceMappingURL=form.css.map */