h1 {
	color: #729dda;
	font-weight: 300;
	font-size: 46px;
	margin: 20px 0;
}

.frameSeparator {
	display: flex;
}

.frameSeparator > div {
	margin: 5px;
	width: 240px;
}

.frameSeparator > .lineSeparator {
	flex: 0;
	width: 1px;
	border-left: 1px solid #999;
}

.socialOptions {
	padding: 36px 0;
}

.socialOptions a {
	display: inline-block;
	position: relative;
	width: 220px;
	padding: 9px 0;
	padding-left: 14px;
	margin: 8px 0;
	
	color: white;
	border: none;
	border-radius: 7px;
	
	background-repeat: no-repeat;
	background-position: 12px center;
	background-size: auto 50%;
	
	cursor: pointer;
}

.socialGooglePlus {
	background: #ec1c24;
	background-image: url('../assets/guest/googleplus.png');
}

.socialGooglePlus:hover {
	background-color: #fc2c34;
}

.socialOptions a.registered::after {
	content: '';
	position: absolute;
	left: calc(100% + 5px);
	top: 0;
	height: 100%;
	width: 44px;
	background-repeat: no-repeat;
	background-image: url('../assets/check.png');
	background-size: auto 80%;
	background-position: center center;
}

.socialOptions a.taken::after {
	content: 'account is already taken';
	position: absolute;
	display: inline-block;
	left: 100%;
	top: 10%;
	margin-left: 5px;
	color: black;
	font-size: 10px;
	width: 80px;
	text-align: left;
}

.socialOptions a:hover {
	text-decoration: none;
}

.socialDescription {
	padding: 11px 30px;
}

.standardRegister input {
	border: none;
	border-bottom: 1px solid #aaa;
	margin: 18px 0;
	padding: 3px 1px;
	width: 228px;
	border-radius: 0;
}

.standardRegister > div {
	position: relative;
	text-align: left;
}

.standardRegister .description {
	position: absolute;
	left: 0;
	top: 0;
	color: #888;
	font-size: 12px;
	font-weight: 300;
	
	pointer-events: none;
	transition: top 225ms, font-size 225ms;
}

.standardRegister .description.cover {
	top: 20px;
	font-size: 15px;
}

.standardRegister .description.invalid {
	color: red;
}

.standardLogin {
	padding-top: 22px;
}

.confirm {
	display: inline-block;
	text-align: left;
	margin: 20px 0;
}

.confirm button {
	width: 180px;
	padding: 8px 0;
	background: #729dda;
	color: white;
	cursor: pointer;
	margin: 4px 0;
	
	border: none;
	border-radius: 7px;
}

.confirm button:hover {
	background: #82adea;
}

.confirm button.disabled {
	pointer-events: none;
	background: #888;
}

.eula {
	display: inline-block;
	margin: 15px 0;
	margin-top: 0px;
	width: 300px;
}

.passwordMeter {
	position: absolute;
	left: 0;
	bottom: 12px;
	width: 200px;
	height: 5px;
}

.passwordStrength {
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	
	transition: background 300ms, width 300ms;
}

.passwordStrength[data-level="1"] {
	background: red;
}

.passwordStrength[data-level="2"] {
	background: orange;
}

.passwordStrength[data-level="3"] {
	background: green;
}

body.mobile h1 {
	margin-bottom: 0;
}

body.mobile .socialOptions span {
	display: none;
}

body.mobile .socialOptions {
	padding: 0;
}

body.mobile .frameSeparator {
	flex-direction: column;
}

body.mobile .lineSeparator {
	display: none;
}

body.mobile .eula {
	display: none;
}

body.mobile .socialOptions {
	flex: initial;
	height: 40px;
}

body.mobile .socialOptions > div {
	display: inline-block;
}

body.mobile .socialOptions > .socialDescription {
	display: none;
}

body.mobile .standardRegister input {
	width: 240px;
}

body.mobile .socialOptions a {
	width: 40px;
	height: 40px;
	margin: 8px 5px;
	color: transparent;
}

body.mobile .socialOptions a.registered::after {
	left: 12px;
	top: 12px;
	background-size: auto 60%;
}

.centerSectionOuter {
    transition: height 300ms;
}
