.body {
  background-color: #f1c850;
  font-family: 'Neue Haas Grotesk', sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding: 2.5%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.logo {
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 20px;
}

.text-field {
  padding-left: 0px;
  border-style: none none solid;
  border-width: 1px;
  border-color: #000;
  background-color: transparent;
  font-weight: 400;
}

.text-field::-webkit-input-placeholder {
  color: #000;
}

.text-field:-ms-input-placeholder {
  color: #000;
}

.text-field::-ms-input-placeholder {
  color: #000;
}

.text-field::placeholder {
  color: #000;
}

.text-field.last {
  margin-bottom: 15px;
}

.field-label {
  font-weight: 500;
}

.form {
  display: none;
  width: 100%;
  padding-top: 20px;
}

.submit {
  display: block;
  width: 25%;
  margin-top: 10px;
  padding-top: 9px;
  padding-bottom: 9px;
  border: 1px solid #000;
  border-radius: 1000px;
  background-color: transparent;
  color: #000;
  font-size: 15px;
  text-align: center;
  text-transform: none;
}

.copyright {
  position: absolute;
  left: auto;
  top: auto;
  right: 20px;
  bottom: 10px;
  font-size: 13px;
}

.row {
  width: 50%;
  padding-right: 40px;
}

.row.left {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.row.bottom {
  padding-right: 0px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.paragraph {
  font-size: 14px;
}

.paragraph.contact {
  display: inline-block;
  width: 25%;
  margin-top: 10px;
  margin-bottom: 0px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid #000;
  border-radius: 10000px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 479px) {
  .wrapper {
    height: 95vh;
  }

  .text-field {
    border-radius: 0px;
  }

  .form {
    display: none;
  }

  .submit {
    width: 50%;
  }

  .row.left {
    width: 80%;
  }

  .row.bottom {
    width: 80%;
  }

  .paragraph.contact {
    font-weight: 500;
  }
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NeueHaasGroteskRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NeueHaasDisplayMediu.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}