.auth-form {
    max-width: 500px;
    margin: 0 auto;
}
.form-group {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.form-group.submit-group {
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.form-control {
	flex: 1;
	height: 40px;
	border: none;
	border-radius: 0 6px 6px 0;
	padding: 0 15px 0 0;
	font-size: 16px;
	color: #212121;
	background-color: #fff;
	outline: none;
	box-shadow: none;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	filter: none;
}
.form-group.checkbox-group label {
	position: relative;
	cursor: pointer;
	padding-left: 26px;
	line-height: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.form-group.checkbox-group input {
	position: absolute;
	left: -9999px;
	visibility: hidden;
	opacity: 0;
}
.form-group.checkbox-group .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	border: 1px solid #fff;
	border-radius: 4px;
}
.form-group.checkbox-group .checkmark:after {
	content: '';
	position: absolute;
	left: 3px;
	top: 3px;
	width: 10px;
	height: 10px;
	background-color: #fff;
	border-radius: 2px;
	display: none;
}
.form-group.checkbox-group input:checked + .checkmark:after {
	display: block
}
.form-group.checkbox-group a {
	color: #fff;
	text-decoration: underline;
}
.form-group .icon {
	flex: 0 0 40px;
	height: 40px;
	border-radius: 6px 0 0 6px;
	background-repeat: no-repeat;
	background-color: #fff;
	background-position: center center;
}
.form-group .icon-name {
	background-image: url('/assets/images/icon-user.svg');
    background-size: 18px auto;
}
.form-group .icon-email{
	background-image: url('/assets/images/icon-email.svg');
    background-size: 20px auto;
}
.form-group .icon-password,
.form-group .icon-password-confirm {
	background-image: url('/assets/images/icon-password.svg');
    background-size: 16px auto;
}
.other-links {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
    align-items: flex-end;
}
.other-links a {
	color: #fff;
	line-height: 19px;
	border-bottom: 1px solid transparent;
	transition: all 0.2s ease-in-out;
}
.other-links a:hover {
	border-color: #fff;
}

@media only screen and (max-width: 768px) {
	.auth-form .btn {
		margin: 0 auto;
	}
	.other-links {
		display: block;
		width: 100%;
		margin-top: 25px;
	}
	.other-links a {
		display: block;
		border: none;
	    margin-bottom: 5px;
	}
}