body {
	background: #e9e9e9;
	color: #666666;
	font-size: 14px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

.container {
	position: relative;	
}

.card {
	position: relative;	
	background: #ffffff;
	border-radius: 5px;
	padding: 60px 0 40px 0;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: .3s ease;
}

	.card .title {
		position: relative;
		font-family: 'Audiowide', cursive;
		background: url("images/logo64x64.png") no-repeat;
		z-index: 1;
		/*border-left: 5px solid #ff4444;*/
		margin: 0 0 25px;
		padding: 10px 0 10px 60px;
		color: #718bc0;
		font-size: 42px;
		font-weight: bold;
	}

	.card .input-container {
		position: relative;
		margin: 0 30px 30px;
	}

		.card .input-container input {
			outline: none;
			z-index: 1;
			position: relative;
			background: none;
			width: 100%;
			height: 60px;
			border: 0;
			color: #212121;
			font-size: 24px;
			font-weight: 400;
		}

			.card .input-container input:focus ~ label {
				color: #9d9d9d;
				-webkit-transform: translate(-12%, -50%) scale(0.75);
				transform: translate(-12%, -50%) scale(0.75);
			}

			.card .input-container input:focus ~ .bar:before, .card .input-container input:focus ~ .bar:after {
				width: 50%;
			}

			.card .input-container input:valid ~ label {
				color: #9d9d9d;
				-webkit-transform: translate(-12%, -50%) scale(0.75);
				transform: translate(-12%, -50%) scale(0.75);
			}

		.card .input-container label {
			position: absolute;
			top: 0;
			left: 0;
			color: #757575;
			font-size: 24px;
			font-weight: 300;
			line-height: 60px;
			transition: 0.2s ease;
		}

		.card .input-container .bar {
			position: absolute;
			left: 0;
			bottom: 0;
			background: #757575;
			width: 100%;
			height: 1px;
		}

			.card .input-container .bar:before, .card .input-container .bar:after {
				content: '';
				position: absolute;
				background: #718bc0;
				width: 0;
				height: 2px;
				transition: .2s ease;
			}

			.card .input-container .bar:before {
				left: 50%;
			}

			.card .input-container .bar:after {
				right: 50%;
			}

.form-check {
	margin-left: 10px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	color: #757575;
}

.check-container {
	display: block;
	position: relative;
	padding-left: 32px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 20px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

	/* Hide the browser's default checkbox */
	.check-container input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
	background-color: #005faf;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
	left: 10px;
	top: 5px;
	width: 6px;
	height: 12px;
	border: solid white;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn-container {
	margin: 0 30px;
}