body {
	background-color: #ffffff;
}

.card {
	background-color: #ffffff;
}

.flex-container {
	display: flex;
	flex-direction: row;
	gap: 3rem;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.page-title {
	display: inline-block;
	font-variant: small-caps;
	font-size: 2.5rem;
}

/* ===FORM=== */
form {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: tablet-gothic-wide, sans-serif;
}

.form-group {
	width: 300px;
	position: relative;
	margin-bottom: 30px;
}

.form-field {
	font-size: 16px;
	width: 100%;
	height: 100%;
	background: #eeeeee;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
	border-radius: 6px;
	border: rgba(128, 212, 143, 0) 1px solid;
	padding: 22px 15px 6px 15px;
}

.form-field:focus, .form-field:hover {
	border: #222 1px solid;
	outline: none;
}

.form-field.invalid {
	border: red 1px solid;
	caret-color: red;
}

.form-field[disabled] {
	color: #00000042;
	border: none;
}

.form-group label {
	color: #aaaaaa;
	font-size: 16px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 15px;
	top: 15px;
	transition: 0.15s ease all;
	-moz-transition: 0.15s ease all;
	-webkit-transition: 0.15s ease all;
}

.form-error {
	position: absolute;
	width: 100%;
	padding: 0 11px;
	color: red;
	font-size: 12px;
	font-weight: 400;
	margin-top: 6px;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s ease opacity;
	-moz-transition: 0.3s ease opacity;
	-webkit-transition: 0.3s ease opacity;
}

.form-error.active {
	opacity: 1;
}

.form-group label.active {
	color: #6e6e6e;
	top: 5px;
	font-size: 12px;
	cursor: auto;
}

.form-group label.invalid {
	color: red;
}

input[type=date] {
	-webkit-appearance: none;
	height: 50px;
}

/* Do not show placeholder text in date picker */
input[type=date]:required:invalid {
	color: transparent;
}

input[type=date]:focus {
	color: black !important;
}

#sendBtn {
	padding: 14px 28px;
	border-radius: 2px;
}

/*Small devices*/
@media only screen and (max-width: 767.98px) {
	.flex-container {
		flex-direction: column;
		gap: 0;
	}
}


