@charset "UTF-8";
/* CSS Document */

body {
	margin: 0 auto;
	width: 400px;
}

h1, h2, h3, p {
	font-family: 'Arial', sans-serif;
	color: pink;
}

form .textfield {
	margin-bottom: 10px;
}

form .textfield input {
	width: 400px;
	border: 5px solid white;
	-webkit-box-shadow:
		inset 0 0 8px  rgba(0,0,0,0.1),
			  0 0 16px rgba(0,0,0,0.1);
	-moz-box-shadow: 
		inset 0 0 8px  rgba(0,0,0,0.1),
		      0 0 16px rgba(0,0,0,0.1);
	box-shadow: 
		inset 0 0 8px  rgba(0,0,0,0.1),
		      0 0 16px rgba(0,0,0,0.1);
			  
 	padding: 15px;
	background: rgba(255,255,255,0.5);
	margin: 0 0 10px 0;

}

.submit {
	background: pink;
	display: inline-block;
	padding: 5px 10px 6px;
	color: white;
	text-decoration: none;
	font-weight: bold;
	line-height: 1;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-box-shadow: 0 1px 3px #999;
	-webkit-box-shadow: 0 1px 3px #999;
	text-shadow: 0 -1px 1px #222;
	border-bottom: 1px solid #222;
	position: relative;
	cursor: pointer;
	
}
			  

