/*FORM*/
.form-container {
  position: relative;
}
.form-container__img {
  position: absolute;
  top: 10%;
  right: -5%;
  z-index: -1;
  max-width: 50%;
  display: none;
}
@media (min-width: 47.9375em) {
  .form-container__img {
    display: block;
  }
}
@media (min-width: 74.9375em) {
  .form-container__img {
    top: 20%;
    max-width: 50%;
    right: -8%;
  }
}
@media (min-width: 89.9375em) {
  .form-container__img {
    top: 10%;
    right: -20%;
    max-width: 100%;
  }
}

.form {
  max-width: 100%;
  margin: 2rem auto 0 auto;
  box-shadow: 3px 2px 10px 6px rgba(0, 0, 0, 0.23);
  padding: 1rem 1.5rem;
  margin-bottom: 4rem;
  z-index: 10;
  position: relative;
  background: #fff;
}
.form__title {
  color: #00386A;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.form__sub-title {
  margin: 1rem 0;
  font-size: 1.4rem;
  font-weight: 500;
}
.form-label {
  font-weight: 500;
}
.form-group {
  position: relative;
}
.form-control {
  border: none;
  border-bottom: 2px solid #000;
  border-radius: 0;
  padding: 0;
}
.form-control:focus {
  box-shadow: none;
  border-color: #00386A;
}
.form__number {
    width:auto;
  position: absolute;
  font-size: 0.9rem;
  font-weight: 700;
  top: 1.5rem;
  left: 0;
}
.form__btn {
  background: #FFF683;
  border: none;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-weight: 800;
  color: #097272;
  font-size: 1.1rem;
  border-radius: 30px;
  letter-spacing: 1px;
  cursor: pointer;
}
.form__btn:hover {
  background-color: #E46020;
}
@media (min-width: 47.9375em) {
  .form {
    max-width: 80%;
    padding: 4rem;
  }
  .form__number {
    display: block;
    left: -1rem;
    top: 0.35rem;
    font-size: 1.2rem;
  }
  .form__btn {
    padding: 1rem 3.5rem;
    font-size: 1.3rem;
  }
}
