.forms {
	display: grid;
	grid-template-columns: 1fr 3px 1fr;
}

@media (max-width: 800px) {
	.forms {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 3px 1fr;
	}
}

.sep {
	background-color: white;
}

.error {
	color: red;
	background-color: lightpink;

	border: red 3px solid;

	padding: 10px;
	border-radius: 10px;
}

form {
	padding: 15px;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

div.text-input-pair:last-of-type {
	margin-bottom: 15px;
}

button[type="submit"] {
	margin-top: auto;
}