body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 18px;
  line-height: 130%;
}

h1 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 2em;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
}

p {
  margin-bottom: 35px;
  line-height: 120%;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 1em;
  font-weight: 700;
}

.main-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  padding: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dr-form {
  width: 400px;
}

.dr-logo {
  margin-bottom: 12px;
  padding-bottom: 0px;
}

.main-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 20px 30px;
  border-radius: 5px;
  background-color: #f6931e;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  font-size: 1em;
  font-weight: 700;
}

.main-cta:hover {
  background-color: #df7f0e;
}

.field-label {
  font-size: 1em;
}

.field-label-2 {
  font-size: 1em;
}

.text-field {
  height: 53px;
  margin-bottom: 12px;
  font-size: 1em;
}

.form-block {
  display: block;
  width: 400px;
}

.field-label-3 {
  line-height: 100%;
}

.success-bg {
  background-color: #d5de23;
}

.fail {
  text-align: center;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 115%;
  }
  .main-wrapper {
    padding: 40px;
  }
  .form-block {
    width: 100%;
  }
}