.wrapper {
	margin: 50px auto 0;
	display: flex;
	justify-content: center;
	width: 500px;
	height: 200px;
	background-color: #eee;
	color: #666;
}


#login {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: relative;
}

#id {
	width: 300px;
	margin-bottom: 10px;
}
#pass {
	width: 300px;
	margin-bottom: 20px;
}
#submit {
	width: 150px;
	padding: 5px;
	background-color: #55acee;
	border: none;
	color: white;
	cursor: pointer;
}
#login input {
	display: block;
	width: 390px;
	padding-left: 5px;
	padding-right: 5px;
}
#login span.field-icon {
	position: absolute;
    right: 10px;
    bottom: 108px;
    cursor: pointer;
}
#login span.field-icon i {
	color: grey;
}
#login > p {
	color: red;
	font-size: 12px;
	text-align: center;
	margin-bottom: 10px;
}

.hidden {
	visibility: hidden;
}

/***** logout *****/
#logout .wrapper {
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
}
#logout .wrapper p:first-of-type {
	margin-bottom: 20px;
}