* {
	color: #eee;
	margin: 0;
	padding: 0;
}

body, html {
	height: 100%;
	width: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	position: relative;
}

body > div {
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.64);
	left: 50%;
	min-width: 256px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 24%;
}

body > div * {
	box-sizing: border-box;
}

body > div > div {
	background-color: #1BBC9B;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 4px;
	padding: 16px;
	text-align: center;
	width: 100%;
}

form {
	background-color: #ddd;
	padding: 16px;
	width: 100%;
}

form > * {
	border: none;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.32);
	display: block;
	font-size: 20px;
	letter-spacing: 1px;
	margin: 8px 16px;
	outline: 0;
	padding: 16px;
	-webkit-transition: border-color 0.2s, background-color 0.2s;
	-moz-transition: border-color 0.2s, background-color 0.2s;
	transition: border-color 0.2s, background-color 0.2s;
	width: calc(100% - 32px);
}

input:not([type="submit"]) {
	background-color: #555;
	border-bottom: 3px solid #1BBC9B;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	transition: 0s;
}

input:not([type="submit"]):hover {
	border-bottom: 3px solid #13866f;
	transition: border-color 0.32s;
}

input[type="submit"] {
	background-color: #1BBC9B;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	transition: 0s;
}

input[type="submit"]:hover {
	background-color: #13866f;
	transition: background-color 0.32s;
}

input[type="submit"]:active {
	background-color: #10705c;
	transition: background-color 0.16s;
}

/* Fucking placehloder */
::-webkit-input-placeholder {
	color: #eee;
	opacity: 1;
}

:-moz-placeholder {
	color: #eee;
	opacity: 1;
}

::-moz-placeholder {
	color: #eee;
	opacity: 1;
}

:-ms-input-placeholder {  
	color: #eee;
	opacity: 1;
}