main {
  height: 100%;
}

.header {
  background-color: transparent;
}

.main_content {
  text-align: center;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.main_content .content_title {
  text-align: left;
  margin-bottom: 50px;
}

.main_content .content_title h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 400;
}

.main_content .title-image {
  width: 100%;
  margin-bottom: 80px;
}

.main_content form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.main_content label {
  font-size: 14px;
  color: #000;
  margin: 15px 0 5px;
  text-align: left;
  display: none;
  font-family: "Sweet Sans Pro", sans-serif;
}

.main_content input {
  margin-bottom: 30px;
}

.main_content input,
.main_content textarea {
  font-size: 16px;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  background-color: transparent;
  font-family: "Sweet Sans Pro", sans-serif;
  font-weight: 200;
  color: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.main_content textarea::placeholder {
  position: relative;
  top: 65px;
}

.main_content input::placeholder,
.main_content textarea::placeholder {
  color: #999;
}

.main_content textarea {
  resize: none;
}

.main_content .submit-button {
  margin-top: 60px;
  font-size: 14px;
  color: #fff;
  background-color: #ff00ce;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  width: 150px;
  height: 45px;
  font-family: "Sweet Sans Pro", sans-serif;
}

.main_content .right {
  text-align: right;
}

.main_content .submit-button img {
  margin-left: 10px;
}

@media all and (max-width: 768px) {
  .banner_text {
    display: none;
  }

  .main_content {
    width: 85%;
    top: auto;
    bottom: 0;
    transform: translate(-50%, -15%);
  }

  .main_content .content_title {
    margin-bottom: 30px;
  }

  .main_content .content_title h2 {
    font-size: 25px;
  }

  .main_content p {
    font-size: 12px;
    line-height: 24px;
  }

  .main_content input {
    margin-bottom: 15px;
  }

  .main_content .submit-button {
    font-size: 12px;
    width: 130px;
    height: 40px;
  }
}
