html, body {
	padding: 0;
	margin: 0;
}

* {
	box-sizing: border-box;
}

.error {
	border-color: red !important;
}

.form-errors {
	margin-bottom: 30px;
	color: red;
}

.form-errors > span {
	display: block;
	margin-bottom: 15px;
	font-size: 20px;
}

.form-wrapper {
	width: 100%;
	padding: 30px;
	background: #C3B8DC;
}

.form-wrapper.complete {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
}

input {
	width: 100%;
	border-radius: 25px;
	height: 40px;
	border: 2px solid transparent;
	padding-left: 15px;
	color: #C3B8DC;
	font-size: 20px;
}

label {
	line-height: 0;
	font-size: 20px;
	text-transform: capitalize;
	color: #fff;
}

label#consent {
	font-size: 12px;
}

.aligned-label,
.floating-label {
	margin-bottom: 30px;
}

.floating-label {
	position: relative;
}

.floating-label label {
	position: absolute;
	top: 20px;
	left: 15px;
	transition: all .5s;
	color: #C3B8DC;
}

.floating-label input:focus ~ label,
.floating-label input:valid ~ label {
	color: #fff;
	transition: all .5s;
	top: -10px;
}

.aligned-label {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.aligned-label input,
.aligned-label label {
	display: block;
}

.aligned-label label {
	margin-bottom: 15px;
}

input[type=submit] {
	width: fit-content;
	display: block;
	padding: 15px 30px;
	margin: 0 auto;
	line-height: 0;
	transition: all .5s;
	background: #BEE0E8;
	color: #fff;
	font-size: 22px;
	border: 2px solid transparent;
}

input[type=submit]:hover {
	transition: all .5s;
	background: transparent;
	color: #BEE0E8;
	border: 2px solid #BEE0E8;
}