.form {
  position: relative;
  margin-top: 4rem;
  z-index: 11;
}
.form form * {
  font-size: 1rem;
  font-family: var(--font1);
}
.form form > div {
  border: none !important;
  margin: 0.5rem auto;
}
.form form > div textarea,
.form form > div input {
  border: 1px solid var(--gray-ml);
  background: var(--gray-ll);
  padding: 1rem;
}
.form form > div textarea::-moz-placeholder, .form form > div input::-moz-placeholder {
  color: var(--gray-m);
}
.form form > div textarea:-ms-input-placeholder, .form form > div input:-ms-input-placeholder {
  color: var(--gray-m);
}
.form form > div textarea::placeholder,
.form form > div input::placeholder {
  color: var(--gray-m);
}
.form form > div textarea {
  width: 100%;
}
.form form > div [type=submit] {
  min-width: 100%;
  font-family: var(--font);
}
@supports (-webkit-hyphens: none) {
  .form form > div > * {
    flex: 1 1 !important;
  }
}

hr {
  border: none;
  border-top: 3px solid var(--gray-l);
}

@media (min-width: 960px) {
  .form > form div input[type=submit] {
    min-width: 0 !important;
  }
}

.valuation .form {
  margin-top: 0rem !important;
}
.valuation .form[open=open] {
  margin-top: 4rem !important;
}
.valuation .form h2 {
  color: var(--w);
  text-align: center;
}
.valuation .form input:not([type=submit]) {
  background: #795656aa !important;
  border-color: --var(--c02-l) !important;
  color: #fff !important;
  font-weight: 600;
}
.valuation .form input:not([type=submit])::-moz-placeholder {
  color: #fff !important;
  opacity: 1;
  font-weight: 600;
}
.valuation .form input:not([type=submit]):-ms-input-placeholder {
  color: #fff !important;
  opacity: 1;
  font-weight: 600;
}
.valuation .form input:not([type=submit])::placeholder {
  color: #fff !important;
  opacity: 1;
  font-weight: 600;
}
.valuation .form hr {
  border-color: var(--c02-m);
  mix-blend-mode: color-dodge;
}
