// contact form

.contact-page {
	input {
		height: 67px;
	    width: 100%;
	    border: none;
	    background: #f7f4f2;
	    padding: 0 40px;
	    margin-bottom: 30px;
	    border-radius: 30px;
	    outline: none;
	    font-size: 16px;
	    color: #88858e;
	}

	textarea {
		font-size: 16px;
	    color: #88858e;
	    height: 180px;
	    width: 100%;
	    background: #f7f4f2;
	    padding: 20px 40px 30px;
	    border: none;
	    border-radius: 40px;
	    outline: none;
	    margin-bottom: 20px;
	}

	p {
		margin: 0;

		input[type="submit"] {
			display: inline-block;
		    vertical-align: middle;
		    border: none;
		    outline: none;
		    background-color: #ff6d12;
		    font-size: 16px;
		    color: #ffffff;
		    font-weight: 700;
		    padding: 16.5px 60px;
		    border-radius: 33.5px;
		    -webkit-transition: all 0.4s ease;
		    transition: all 0.4s ease;
		    max-width: 234px;

		    &:hover {
		    	background-color: #2c2734;
		    	color: #fff;
		    }
		}
	}
}