form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-self: center;
}

form h2 {
	color: white;
	text-align: center;
}

form input {
	background-color: transparent;
	padding: 8px;
	border-radius: 5px;
	font-size: 18px;
	color: white;
	border: 1px solid white;
}

form textarea {
	background-color: transparent;
	padding: 8px;
	border-radius: 5px;
	font-size: 18px;
	color: white;
	border: 1px solid white;
	resize: vertical;
	min-height: 150px;
	max-height: 250px;
}