* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font-family: Roboto, Arial, sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
}
html {
	background-color: #ddd;	
}
body {
	display: flex;
	align-items: center;
	justify-content: center;	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
body.identificar #identificar,
body.recuperar #recuperar {
	display: block;
}
#identificar {
	max-width: 400px;
}
#recuperar {
	max-width: 480px;
}
div {
	display: none;
	width: 90%;
	box-shadow: 0 0 5px #666;
	background-color: #bbb;
}
h1 {
	position: relative;
	background-color: #eee;
	color: #333;
	padding: 10px 20px;
	border-bottom: solid 1px #888;
}
img {
	position: absolute;
	top: 0;
	right: 12px;
	width: 24px;
	height: 24px;
	padding: 8px;
	opacity: 0.7;
	cursor: pointer;
}
form {
	padding: 20px;
}
input[type="text"],
input[type="password"] {
	color: white;
	background-color: #555;
	width: 100%;
	padding: 5px 34px 5px 10px;
	border-radius: 8px;
	box-shadow: inset 0 0 8px #000;
	box-sizing: border-box;
	margin-bottom: 20px;
}
input::-webkit-input-placeholder {
    color: #aaa;
}
input[type="submit"] {
	width: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0.1));
	background-color: #6c1;
	border: solid 1px #4a0;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.7);
	font-weight: bold;
	color: #222;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
	text-align: center;
	cursor: pointer;
	padding: 5px 30px;
	border-radius: 8px;
}
form.enviando input[type="submit"] {
	background-color: #ddd;
	border: solid 1px #bbb;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
	color: #555;
}