.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
}

h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form-group {
	flex-basis: calc(50% - 20px);
	margin-bottom: 20px;
}

label {
	display: block;
	font-size: 18px;
	margin-bottom: 5px;
	text-align: left;
}

textarea {
	display: block;
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 2px solid #ccc;
	resize: none;
}

button {
	display: block;
	margin-top: 10px;
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
	background-color: #007bff;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

button:hover {
	background-color: #0062cc;
}
