:root {
	--themeColor: red;
}

* {
	box-sizing: border-box;
}

html,body {
	min-height: 100%;
	cursor:  default;
}

body {
	font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
	color: white;
	font-size: 12px;
	background: hsla(210,60%,30%,1);
	/*url(/images/classy_fabric.png)*/
}

form {
	background: hsla(0,0%,80%,0.5);
	width: 70%;
	max-width: 700px;
	min-width: 400px;
	margin: 30px auto;
	border-radius: 0.4em;
	border: 1px solid #191919;
	overflow: hidden;
	position: relative;
	box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.2);
}



form:before {
	content: "";
	display: block;
	position: absolute;
	width: 8px;
	height: 5px;
	border-radius: 50%;
	left: 34%;
	top: -7px;
	box-shadow: 0 0 6px 4px #fff;
}

.inset {
	padding: 20px;
	border-top: 1px solid #19191a;
}

form h1 {
	font-size: 18px;
	text-shadow: 0 1px 0 black;
	text-align: center;
	padding: 15px 0;
	border-bottom: 1px solid black;
	position: relative;
}

form h1:after {
	content: "";
	display: block;
	width: 250px;
	height: 100px;
	position: absolute;
	top: 0;
	left: 50px;
	pointer-events: none;
	transform: rotate(70deg);
	background: linear-gradient(50deg, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0));
}

label {
	color: #000;
	display: block;
	padding-bottom: 9px;
}



.p-container {
	padding: 0 20px 20px 20px;
}

.p-container:after {
	clear: both;
	display: table;
	content: "";
}

.p-container span {
	display: block;
	float: left;
	color: #0d93ff;
	padding-top: 8px;
}

p {
	text-indent: 3em;
	font-size: 1.4em;
	line-height: 1.5em;
	margin: 2em;
	text-align: justify;
	hyphens: auto;
}
a {
	color: white;
}