.form-title {
	margin: 0;
	text-align: center;
	font-size: 2.2rem;
}

.form-container {
	display: flex;
	justify-content: center;
}

.form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.form > * {
    width: 55rem;
	max-width: 90vw;
}

input, select {
	height: 52px;
	padding: 0 20px;
    margin: 10px 0;
	font-size: 1rem;
	font-family: 'miller-display', serif;
}

option {
	padding: 3px;
	font-family: 'miller-display', serif;
}

footer {
	position: absolute;
    bottom: 0;
    width: 90%;
	transform: translate(0, 100%);
}

.form-group {
	display: flex
}

.form-group > * {
	width: 100%;
}

input[type="submit"] {
    border-radius: 2px;
    border-style: none;
    transition: background-color 0.5s ease-out, scale 0.5s ease-out, box-shadow 0.5s ease-out, translate 0.5s ease-out;
    width: 50%;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    margin-top: 1.2rem;
	background-color: #a32b36;
    color: #fff;
	font-weight: bold;
}

input[type="submit"]:hover {
	background-color: #bb1b32;
    box-shadow: 0px 0px 13px 3px rgba(255,255,255,0.15);
	scale: 1.03;
	translate: 0 -2px;
}

.error-message {
	text-align: center;
    line-height: 3;
    color: #e83d5b;
	font-size: 1rem;
    font-family: calibri, sans-serif;
}

.confirmation-container {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	height: 30%;
}

.confirmation-title {
	font-size: 2rem;
	font-weight: bold;
	line-height: 2;
	color: #63cc8f;
}

.confirmation-message {
	font-size: 1.1rem;
}