.user {
	max-width: 480px;
}
.user .message {
	color: red;
}
.user .item-hold {
	margin: 20px 0;
}
.user .group-hold > span {
	display: block;
	border-bottom: solid 1px #eeeeee;
	padding-bottom: 10px;
}
.user .group-hold > div {
	/* margin-left: 20px; */
}
.user label {
	display: block;
}
.user input[type=text],
.user input[type=email],
.user input[type=number],
.user input[type=password] {
	box-sizing: border-box;
	margin: 0;
	font: inherit;
	width: 100%;
	border: solid 1px #ced4da;
	padding: 6px 8px;
}

.user .link {
	font: inherit;
	border: none;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	box-sizing: border-box;
	margin: 0;
	padding: 12px 32px;
	transition: .3s;
	background-color: #e7e7e7; color: black;
	border: solid 2px transparent;
}

.user .green {background-color: #339414; color: white;}
.user .blue {background-color: #1967be; color: white;}
.user .red {background-color: #f44336; color: white;}
.user .gray {background-color: #e7e7e7; color: black;}
.user .black {background-color: #373a3c; color: white;}

.user .link:hover {
	background-color: #e7e7e7; color: black;
	border: solid 2px #cccccc;
}


