.form-container {
  height: 100%;
  z-index: 0;
  background-image: url('../images/background.jpg');
      background-repeat: no-repeat;
      background-position: center;
}

.form-wrap {
  height: 100%;
  @media screen and (max-width: 400px) {
    height: 80%;
  }
}


.form-content {
  height: 100%;
  justify-content: center;

  @media screen and (max-width: 480px) {
    padding: 10px;
  }
}

.form {
  max-width: 800px;
  height: auto;
  width: 100%;
  z-index: 1;
  display: grid;
  margin: 0 auto;
  padding: 80px 32px;

  @media screen and (max-width: 400px) {
    padding: 32px 32px;
  }
}

.form-h1 {
  margin-bottom: 40px;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
}

.form-label {
	  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
}

.form-input {
	  padding: 16px 16px;
  margin-bottom: 32px;
  border: none;
  border-radius: 4px;
}

.form-text-area {
	  padding: 16px 16px;
  border: none;
  border-radius: 4px;
  height: 200px;
  resize: none;
}

.form-button {
  background: #eb1000;
  cursor: pointer;
  padding: 16px 0;
  margin-top: 16px;
  border: none;
  border-radius: 4px;
  color: #fff;
}

.text {
	 text-align: center;
  margin-top: 24px;
  color: #fff;
  font-size: 14px;
}