* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background: #b4b4b4;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	/* align-items: center; */
}
@media screen and (min-width: 768px) {
	body {
		align-items: center;
	}
}

#registration-form {
	background-color: #fff;
}

#registration-form .fieldset .header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	font-family: 'BasicSansAlt-Black';
	font-weight: 700;
	padding: 10px;
}

#registration-form .fieldset .header p {
	font-size: 28px;
	display: flex;
	flex-direction: column;
}
#registration-form .fieldset .header span {
	text-align: center;
	font-size: 32px;
}

#registration-form {
	font-family: 'Open Sans Condensed', sans-serif;
	width: 400px;
	min-width: 250px;
	margin: 0 auto;
	position: relative;
}

#registration-form .fieldset {
	background-color: #fff;
	border-radius: 3px;
}

#registration-form legend {
	text-align: start;
	background: #000;
	width: 100%;
	padding-bottom: 10px;
	border-radius: 3px 3px 30px 30px;
	color: white;
	font-size: 20px;
}
#registration-form legend header {
	display: flex;
	align-items: center;
	justify-content: center;
}
#registration-form legend img {
	width: 100px;
	height: 100px;
}
#registration-form legend ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: none;
	padding-inline-start: 20px;
	margin-block-start: 0px;
	padding-bottom: 20px;
}
#registration-form legend ul li {
	text-align: start;
	color: white;
	font-size: 14px;
}

.fieldset .form {
	margin: 0 auto;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	padding-bottom: 30px;
	box-sizing: border-box;
	border-radius: 0 0 3px 3px;
}
.fieldset .form h2 {
	text-align: center;
	width: 100%;
	border-radius: 3px 3px 30px 30px;
	color: #364351;
	font-size: 20px;
	padding: 20px;
}
.placeholder #registration-form label {
	display: none;
}
.no-placeholder #registration-form label {
	margin-left: 5px;
	position: relative;
	display: block;
	color: grey;
	text-shadow: 0 1px white;
	font-weight: bold;
}
/* all */
::-webkit-input-placeholder {
	text-shadow: 1px 1px 1px white;
	font-weight: bold;
}
::-moz-placeholder {
	text-shadow: 0 1px 1px white;
	font-weight: bold;
} /* firefox 19+ */
:-ms-input-placeholder {
	text-shadow: 0 1px 1px white;
	font-weight: bold;
} /* ie */


#registration-form input {
	padding: 15px 20px;
	border-radius: 1px;
	margin: 10px auto;
	background-color: #f7f7f7;
	border: 1px solid silver;
	font-size: 16px;

	-webkit-box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.8);
	width: 100%;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: background-color 0.5s ease;
	-moz-transition: background-color 0.5s ease;
	-o-transition: background-color 0.5s ease;
	-ms-transition: background-color 0.5s ease;
	transition: background-color 0.5s ease;
}
.no-placeholder #registration-form input {
	padding: 10px 20px;
}

#registration-form input:active,
.placeholder #registration-form input:focus {
	outline: none;
	border-color: silver;
	background-color: white;
}

#registration-form button {
	font-family: 'Open Sans Condensed', sans-serif;
	text-transform: uppercase;
	outline: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	background-color: #008000;
	padding: 10px;
	color: white;
	border: 1px solid #789258;
	border-radius: 3px;
	font-size: 1.5em;
	font-weight: bold;
	margin-top: 5px;
	cursor: pointer;
	position: relative;
	top: 0;
}

#registration-form button:hover {
	background-color: #11a911;
}

#registration-form button:active {
	background: #5c8ca7;
}

.parsley-error-list {
	background-color: #c34343;
	padding: 5px 11px;
	margin: 0;
	list-style: none;
	border-radius: 0 0 3px 3px;
	margin-top: -5px;
	margin-bottom: 5px;
	color: white;
	border: 1px solid #870d0d;
	border-top: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	top: -1px;
	text-shadow: 0px 1px 1px #460909;
	font-weight: 700;
	font-size: 12px;
}
.parsley-error {
	border-color: #870d0d !important;
	border-bottom: none;
}
#registration-form select {
	width: 100%;
	padding: 5px;
}
::-moz-focus-inner {
	border: 0;
}
