
.post-message {
   text-align: center;
   background: var(--color003);
   color: white;
   font-size: 34px;
   font-weight: 300;
   padding: 5px;
   max-width: 440px;
   margin-top: 40px;
 }

form {
  margin-top: 22px;
  width: 440px;
  height: 500px;
}

form h2 {
	
	line-height: 1.2;
    font-size: 2em;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-transform: uppercase;
    text-align: left;
}

input[type=text] {
  background: rgba(17, 46, 59, 0.8);
  border: 0;
  color: #fff;
  display: block;
  font-size: 16px;
  margin-bottom: 14px;
  outline: none;
  padding: 10px 15px;
  width: 100%;
  font-family:  Arial;
}

textarea {
  background: rgba(17, 46, 59, 0.8);
  border: 0px;
  color: white;
  margin-bottom: 3px;
  outline: none;
  padding: 10px 15px;
  width: 100%;
  margin-bottom: 5px;
  min-height: 150px;
  font-family: Arial;
  font-size: 16px; 
  resize: none;
  }
  
.email {
  background: transparent;
  color: transparent;
  outline: none;
  border:  transparent;
}

::placeholder {
  color: #d9d9d9;
  opacity: 1; 
}

.submit{
  background: var(--color003);
  color: #fff;
  float: left;
  font-size: 16px;
  margin: 5px 0 0 0;
  outline: 0;
  padding: 5px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
 }

.submit:hover {
  background-color: var(--color002);
  border: none;
 }

@media screen and (max-width: 1040px) {
	
	.post-message {
	  
	   width: 100%;
	   
	 }

	form {
		
	  width: 100%;
	 
	} 

}