form.form-container {
	display: block;
}

form footer {
	width: 100%;
	padding: 40px;
	text-align: center;
}

form h1 {
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}

form form {
	width: 480px;
	margin: 20px 0;
}

form .group {
	background: white;
	box-shadow: 0 7px 14px 0 rgba(49, 49, 93, 0.10),
		0 3px 6px 0 rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	margin-bottom: 20px;
}

form label {
	position: relative;
	color: #8898AA;
	font-weight: 400;
	height: 40px;
	line-height: 40px;
	margin-left: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}

form .group label:not(:last-child) {
	border-bottom: 1px solid #F0F5FA;
}

form label>span {
	width: 80px;
	text-align: right;
	margin-right: 30px;
}

form .field {
	background: transparent;
	font-weight: 400;
	border: 0;
	color: #31325F;
	outline: none;
	flex: 1;
	padding-right: 10px;
	padding-left: 10px;
	cursor: text;
}

form .field::-webkit-input-placeholder {
	color: #CFD7E0;
}

form .field::-moz-placeholder {
	color: #CFD7E0;
}

form button {
	float: left;
	display: block;
	background: #666EE8;
	color: white;
	pointer: cursor;
	box-shadow: 0 7px 14px 0 rgba(49, 49, 93, 0.10),
		0 3px 6px 0 rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	border: 0;
	margin-top: 20px;
	font-size: 15px;
	font-weight: 500;
	width: 100%;
	height: 40px;
	line-height: 38px;
	outline: none;
}

form button:focus {
	background: #555ABF;
}

form button:active {
	background: #43458B;
}

form button:disabled {
	opacity: .65;
	box-shadow: none;

	transition: 0.3s all ease;
	-wekbit-transition: 0.3s all ease;
	-moz-transition: 0.3s all ease;
}

form .outcome {
	float: left;
	width: 100%;
	padding: 8px 4px;
	min-height: 24px;
	text-align: center;
}

form .success,
form .error {
	display: none;
	font-size: 13px;
}

form .success.visible,
form .error.visible {
	display: inline;
}

form .error {
	color: #E4584C;
}

form .success {
	color: #666EE8;
}

form .success .token {
	font-weight: 500;
	font-size: 13px;
}
