.formkit-page {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  background-size: cover;
  min-height: 100%;
  color: #333333;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

p {
  line-height: 1.7;
}

.formkit-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-height: 100vh;
}

.formkit-container > * {
  width: 50%;
}

.formkit-image-container {
  display: -webkit-box;
  display: flex;
  background-size: cover;
  background-position: 50% 50%;
}

.formkit-image {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.formkit-form-content {
  padding: 180px 100px;
  -webkit-box-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.formkit-header {
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.formkit-header,
.formkit-header * {
  font-family: "Anton", sans-serif;
  line-height: 1.2;
}

.formkit-content p:first-of-type {
  margin-top: 0;
}

.formkit-form {
  margin-top: 20px;
  margin-bottom: 0;
}

.formkit-field {
  margin-bottom: 15px;
}

.formkit-input {
  border-radius: 0;
  background: transparent;
  border-width: 3px;
  text-transform: uppercase;
  font-size: 19px;
  padding: 19px;
}

.formkit-input, .formkit-input * {
  font-family: "Anton", sans-serif;
}

.formkit-select {
  background: transparent !important;
  border-width: 3px !important;
  font-size: 19px !important;
  padding: 19px 25px 19px 19px !important;
  text-transform: uppercase;
  border-radius: 0;
}

.formkit-select,
.formkit-select * {
  font-family: "Anton", sans-serif;
}

.formkit-field [data-group=dropdown]::before {
  right: 15px;
}

.formkit-submit {
  border-radius: 0;
  border: 0;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  font-size: 19px;
}

.formkit-submit span {
  padding: 21px 50px 21px 21px;
}

.formkit-submit,
.formkit-submit * {
  font-family: "Anton", sans-serif;
}

.formkit-powered-by {
  padding: 12px;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
  width: 200px;
  color: #fff;
  border-color: #fff;
  border: 3px solid;
  border-bottom-right-radius: 8px;
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
}

.formkit-powered-by:hover,
.formkit-powered-by:focus {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: ease all 300ms;
  transition: ease all 300ms;
}

.formkit-button-wrapper {
  position: relative;
}

.formkit-arrow {
  position: absolute;
  cursor: pointer;
  display: inline-block;
  top: 25px;
  right: 3px;
  width: 27px;
  height: 20px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.formkit-arrow-left {
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 16px;
  height: 6px;
  display: block;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  float: right;
}

.formkit-arrow-left:after {
  content: "";
  background-color: var(--color);
  width: 16px;
  height: 6px;
  display: block;
  float: right;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
  z-index: -1;
}

.formkit-arrow-right {
  position: absolute;
  background-color: transparent;
  top: 0px;
  left: 11px;
  width: 16px;
  height: 6px;
  display: block;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  float: right;
}

.formkit-arrow-right:after {
  content: "";
  background-color: var(--color);
  width: 16px;
  height: 6px;
  display: block;
  float: right;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
  transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
  z-index: -1;
}

@media all and (max-width: 1000px) {
  .formkit-form-content {
    padding: 50px;
  }
}
@media all and (max-width: 700px) {
  .formkit-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .formkit-image-container {
    width: 100%;
    min-height: 35vh;
  }

  .formkit-form-content {
    width: 100%;
    min-height: 65vh;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
}
