.contact {
	text-align: center;
	/*background: linear-gradient(135deg, #ffb84d, #ffd580);*/
	color: #fff;
	padding: 60px 20px;
	box-shadow: 0 0 20px rgba(0,0,0,0.35);
}
.contact h2 {
	margin-bottom: 20px;
}
.contact form {
	display: inline-flex;
	flex-direction: column;
	gap: 10px;
	/*width: 350px;*/
	width: 100%;
	max-width: 350px;
}
.contact input, 
.contact textarea, 
.contact button {
	border: none;
	border-radius: 8px;
	padding: 10px 15px;
	font-size: 1rem;
	box-shadow: 0 0 5px rgba(0,0,0,0.35);
	outline: none;
}
.contact input, 
.contact textarea {
	color: #333;
}
.contact input:focus, 
.contact textarea:focus {
	background-color: #eee;
}
.contact textarea {
	resize: vertical;
	min-height: 20px;
	max-height: 500px
}
.contact button {
	background: #fff;
	color: #ff7b00;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
}
.contact button:hover {
	background: #ff7b00;
	color: #fff;
}