
.pageTwoColumns {
	margin: 0 auto;
	display: flex;
	gap: 3em;
	flex-direction: row;
	align-items: normal;
}
@media (max-width: 900px) {
	.pageTwoColumns { flex-direction: column; }
}

.colInfo {
	max-width: 30em;
	font-size: 110%;
	line-height: 1.8em;
}

.form {
	display: flex;
	flex-direction: column;
	gap: 1em;
	padding: 1.5em;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	background: #eee;
}
.form label {
	font-weight: 600;
	color: var(--color-text);
}
.form input,
.form textarea {
	width: calc(100% - 2em);
	padding: 10px 12px;
	font-size: 16px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background: #f9fbfc;
	font-family: inherit;
}
.form input:focus,
.form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	background: #fff;
}
.form button {
	align-self: center;
	margin-top: 8px;
	height: 2.75em;
	padding: 0 1.125em;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0.5em;
	border: 0.125em solid transparent;
	transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
	background: #4caf50;
	color: white;
	box-shadow: 0 0.375em 1.125em rgba(22, 160, 133, 0.25);
	cursor: pointer;
}
.btn--primary:hover {
	background: #129276;
}
.confirmation {
	margin: 1.5em;
	font-size: 110%;
	line-height: 1.2em;
}