.body {
  background-color: #000;
}

.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  -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;
  font-family: orpheuspro, sans-serif;
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.circle {
  width: 20px;
  height: 20px;
  margin-bottom: 40px;
  border-radius: 100%;
  background-color: #fff;
  text-align: right;
}

.nice-title {
  max-width: 400px;
  color: #fff;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
}

.logo {
  margin-top: 60px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.section-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  -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;
}

.textarea {
  width: 100%;
  height: 500px;
  font-family: orpheuspro, sans-serif;
}

.submit_btn {
  width: 100%;
  background-color: #000e57;
  font-family: orpheuspro, sans-serif;
}

.form {
  width: 500px;
}

@media screen and (max-width: 479px) {
  .nice-title {
    max-width: 250px;
    font-size: 24px;
    line-height: 28px;
  }

  .submit_btn {
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
  }

  .submit_btn:hover {
    background-color: #000;
  }

  .form {
    width: 300px;
  }
}

