.Form {
	max-width: 800px;
	padding-bottom: 2rem;
	padding-top: 2rem;
	margin: auto;
}
.Form form {
	padding: 2rem 2vw;
	box-shadow: 0 3px 30px -10px rgba(0, 0, 0, 0.3);
}
.Form .Item {
	width: 49%;
	position: relative;
	padding-top: 1.8em;
	margin-bottom: 1rem;
}
.Form .Item.Text label {
	position: absolute;
	top: 2em;
	left: 0;
	transition: all 300ms;
	color: #7e7e7e;
	cursor: text;
}
.Form .Item input + .caption.NotEmpty,
.Form .Item input:focus + .caption {
	font-size: 14px;
	transform: translateY(-1.6em);
	cursor: default;
}
.Form .Item input:focus + .caption {
	color: var(--Scarlett-Color);
}

.Form .Item.Text input {
	width: 100%;
	display: inline-block;
	width: 100%;
	border: 1px solid #bcbcbc;
	padding: .5em 0 .5em;
	border-width: 0 0 1px 0;
	font-size: 18px;
	display: inline-block;
	position: relative;
	box-shadow: none;
	border-radius: 0;
	line-height: 100%;
	height: auto;
	box-sizing: border-box;
}

.Form .Item .border {
	width: 0px;
	height: 2px;
	background: var(--Scarlett-Color);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 300ms cubic-bezier(0.55, 0.06, 0.68, 0.19);
}
.Form .Item.Text input:focus ~ .border {
	width: 100%;
}

.Form textarea {
	max-width: 100%;
	box-sizing: border-box;
	padding: .5em;
}

@media all and (max-width: 600px) {
	.Form .Item.Text {
		width: 100%;
	}
}




.Formerrors {
	border: 2px solid #a23;
	color: #f00;
	padding: 5px 15px;
	margin-bottom: 15px;
}
.Formwarnings {
	border: 2px solid #fc5;
	padding: 5px 15px;
}