body {
  background: #fff;
  color: #444;
  font-family: "Muli", sans-serif;
    width:100%;
}

html {
  width:100%;
}

a {
  color: #1bb1dc;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #0a98c0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 20px 0;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../img/form-hero.png")center top no-repeat; 
  width: 100%;
  position: relative; 
  background-size: cover;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    top: 40px;
}

.inner {
  min-width: 850px;
  margin: 0 auto;
}

.inner h3 {
    font-size: 32px;
    font-family: "Muli", sans-serif;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.inner h4 {
    font-size: 20px;
    font-family: "Muli", sans-serif;
    text-align: center;
    margin-bottom: 32px;
    color: #07ace2;
    font-weight: 600;
}

form {
  width: 100%;
  margin: 0 auto;
 }

.form-group {
  display: flex; }
  .form-group .form-wrapper {
    width: 50%; }
    .form-group .form-wrapper {
      margin-right: 20px; }

.form-wrapper {
  margin-bottom: 17px; }

.form-control, input[type="text"], input[type="email"], input[type="number"], input[type="password"] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  font-family: "Muli";
  background-color: #919392; 
}

p.disclaimer {
  color: #fff;
  font-family: "Muli";
  font-size: 12px;
  line-height: 16px;
  padding: 5px;
}
input::placeholder {
  color: #fff !important;
}

::-webkit-input-placeholder { 
  color: #fff !important;
}
::-moz-placeholder { 
  color: #fff !important;
}
:-ms-input-placeholder { 
  color: #fff !important;
}
:-moz-placeholder { 
  color: #fff !important;
} 

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-left: 20px; }
  select option[value=""][disabled] {
    display: none; }

button {
  border: none;
  width: 325px;
  height: 40px;
  margin: auto;
  margin-top: 29px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fa8e50;
  font-size: 18px;
  color: #fff;
  font-family: "Muli", sans-serif;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s; 
}
  button:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f11a09;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; 
  }
  button:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); 
  }


@media (max-width: 991px) {
  .inner {
    min-width: 768px; 
    } 
  }
@media (max-width: 767px) {
  .inner {
    min-width: auto;
    background: none;
    padding-top: 0;
    padding-bottom: 0; }

  form {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; } 
  }

  @media (max-width: 990px) {
    .inner.formTwo {
      padding: 0px!important;
    }
  }

  .inner.formTwo {
    padding: 0px 60px;
  }

.bottom-disclaimer {     
    margin: 0 auto;
    text-align: center;
    padding: 40px 0px 0px;

  }
.bottom-disclaimer p {
    color: #ffff;
    font-size: 10px;
    margin: 0px;
}

.form-wrapper.cardField {
  margin: 0 auto!important;
  position: relative;
  text-align: center;
  padding-bottom: 15px;
  width: 80%;
}

.form-wrapper.smallField {
    width: 30%;
    margin: 0 auto;
    text-align: center;
}