*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	}
html {
	font-size: 100%;
	-webkit-font-smoothing: antialiased;
	background:url(../imgs/background.jpg);
	}

	
h1 {
	margin-top: 0;
	}
.field {
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0.5em;
	}
label {
	color: white;
	display: block;
	float: left;
	font-size: 18pt;
	margin-bottom: 0.5em;
	padding-right: 8px;
	width: 20%;
	}
input {
	color:white;
	background: rgba(0,0,0,0.21);
	border: none;
	border-radius: 3px;
	font-size: 13pt;
	font-weight:100;
	padding: 0.5em 0.5em;
	width: 70%;
	
	}
textarea {
	background: rgba(0,0,0,0.21);
	border: none;
	border-radius: 3px;
	color:white;
	font-size: 13pt;
	font-weight:100;
	height: 100px;
	padding: 0.5em 0.5em;
	width: 70%;
	z-index: 1000;
	}
button {
	width: 103px;
	background: rgba(0,0,0,0.21);
	border: none;
	border-radius: 3px;
	color: white;
	display: inline-block;
	margin: 0 0 0 67%;
	padding: 9px 15px;
	text-align: center;
	-webkit-font-smoothing: antialiased;

	}

button:hover, button:focus {
	cursor: pointer;
	opacity: 0.75;
	}

button:active {
	box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1) inset;
	opacity: 1;
	}
.success {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #dff0d8;
	border: 1px solid #d6e9c6;
	color: #468847;
	margin-bottom: 0.75rem;
	padding: 1em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	width: 90%;
	}
.error {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #f2dede;
	border: 1px solid rgba(185, 74, 72, 0.3);
	color: #b94a48;
	margin-bottom: 0.75rem;
	padding: 1em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
		}
	
	
