.form-container {
	display: flex;
	width: 100vw;
	height: 100vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.rows-container {
	width: 90%;
	max-width: 500px;
}
.rows-container label,
.rows-container input,
.rows-container select {
	width: 100%;
	display: block;
	padding: 0;
	font-size: 14px;
	line-height: 16px;
}
.rows-container label {
	margin: 0 0 5px;
}
.rows-container input,
.rows-container select {
	height: 30px;
	margin: 0 0 20px;
	padding: 5px 0;
	border: 1px solid #E03326;
}
.rows-container select {
	height: 40px;
}
.rows-container input[type="submit"] {
	background-color: #E03326;
	color: #fff;
}
.rows-container .error-form {
	color: #E03326;
	text-align: center;
}
