.tiny {
	font-size: 0.8em;
	letter-spacing: 0px;
	padding-top: 15px;
}
.disclaimer { padding-bottom: 15px; }
form p {
	margin: 0;
	padding: 3px;
}
form {
	width: 50vw;
	margin: 0 auto;
	display: flex;
}
#error {
	width: 50vw;
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 5px;
	text-align: center;
	border: 3px solid #ff0000;
}
.inputerror {
	border: 1px solid #ff0000 !important;
}
#confirm {
	width: 50vw;
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 5px;
	text-align: center;
}
@media screen and (max-width: 1000px) { 
	form {
		width: 60vw;
		flex-direction: column;
	} 
	#error {
		width: 60vw;
	}
	#confirm {
		width: 60vw;
	}
}
@media screen and (max-width: 500px) { 
	form {
		width: 90vw;
	}
	#error {
		width: 90vw;
	}
	#confirm {
		width: 90vw;
	}
}
form span {
	color: red;
}
.form_left {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
}
.form_left p {
	display: flex;
	flex-flow: wrap;
	justify-content: flex-end;
}
.form_left p label {
	flex: 1 1 150px;
	text-align: right;
}
.form_left p input {
	flex: 1 1 250px;
	padding-left: 5px;
}
.form_right {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
}
.form_right > textarea {
	font-family: inherit;
	resize: vertical;
	flex: 1 1 200px;
	margin: 3px;
}
label {
	font-weight: bold;
}
form input:not([type=submit]) {
	border: 1px solid #ddd;
	border-radius: 4px;
}
form input[type="submit"] {
	border: 1px solid #ddd;
	width: 100px;
	height: 30px;
	border-radius: 4px;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 43%, rgba(246,246,246,0.5) 74%, rgba(237,237,237,0.8) 100%);
}
form input[type="submit"]:hover {
	background: -moz-linear-gradient(top, rgba(237,237,237,0.8) 0%, rgba(246,246,246,0.5) 26%, rgba(255,255,255,1) 57%, rgba(255,255,255,1) 100%);
	box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.1);
}
