body {
	background-color: #252525;
	font-family: 'helvetica neue', arial, sans-serif;
	font-size: 100%;
	min-width: 300px;
}

fieldset {
	background-color: rgba(179, 179, 179, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-top-color: rgba(255, 255, 255, 0.08);
	border-left-color: rgba(255, 255, 255, 0.08);
	box-shadow: rgba(255, 255, 255, 0.08) 1px 1px 0, rgba(0, 0, 0, 0.5) -1px -1px 0;
	margin: 40px auto 0 auto;
	max-width: 420px;
	padding: 12px 0;
	width: 60%;
}

	fieldset div {
		margin: 0 auto;
		padding: 5px 0 8px 0;
		text-align: left;
		width: 90%;
	}
	
	fieldset div:last-child {
		padding: 8px 0 0 0;
		position: relative;
		text-align: center;
	}

input:not([type="submit"]) {
	background-color: #2d2d2d;
	border: 1px solid #171717;
	border-bottom-color: #454545;
	border-right-color: #454545;
	display: block;
	color: #ebebeb;
	font-size: 0.75em;
	margin: 0 auto;
	padding: 4px;
	-webkit-transition: background-color 0.15s ease-out;
	width: 95%;
}
	
	input::-webkit-input-placeholder {
		color: #6b6b6b;
	}
	
	input:not([type="submit"]):focus {
		background-color: #222222;
		box-shadow: rgba(227, 248, 255, 0.3) 0 0 8px;
		outline: none;
	}

	input[type='submit'] {
		background-color: #22bc63;
		background-image: -moz-linear-gradient(#393939 43%, #272727 100%);
		background-image: -o-linear-gradient(#393939 43%, #272727 100%);
		background-image: -webkit-linear-gradient(#393939 43%, #272727 100%);
		background-image: linear-gradient(#393939 43%, #272727 100%);
		border: 1px solid #202020;
		box-shadow: inset rgba(255, 255, 255, 0.1) 0 1px 0;
		color: #c4c4c4;
		cursor: pointer;
		display: inline-block;
		font-size: 1em;
		font-weight: bold;
		padding: 4px 4px 5px 4px;
		position: relative;
		text-shadow: rgba(0, 0, 0, 1) 0 -1px 1px;
		width: 99%;
	}
	
	input[type='submit']:focus {
		box-shadow: inset rgba(255, 255, 255, 0.1) 0 1px 0, rgba(227, 248, 255, 0.2) 0 0 8px;
		outline: none;
	}
	
	input[type='submit']:focus,
	input[type='submit']:hover {
		background-color: #18904b;
		background-image: -moz-linear-gradient(#272727 43%, #1e1e1e 100%);
		background-image: -o-linear-gradient(#272727 43%, #1e1e1e 100%);
		background-image: -webkit-linear-gradient(#272727 43%, #1e1e1e 100%);
		background-image: linear-gradient(#272727 43%, #1e1e1e 100%);
		color: #f0f0f0;
	}
	
	input[type='submit']:active {
		padding: 5px 4px 4px 4px;
	}