/*
	Modified by: Cyro Morais
	Version: 1.0

	Css rules only for the sign in page
*/

/* Columns */
.nmx-box {
	float: left;
	position: relative;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

/*
 *	Box Login
*/
#login {
	border-right: none;
	width: 57.5%;
}

/*
 *	Box Register
*/
.centerColumn {
	margin-top: 30px;
}

#register {
	margin-left: 11.2%;
	border-left: none;
	left: -1px;
	width: 31.28%;
}

/* error messages */
div[class*="messageStack"] {
	margin-bottom: 0;
}

div[class*="messageStack"] + #login,
div[class*="messageStack"] + #login + #register {
	margin-top: 36px
}

/* social login */
.nmx-form__sociallogin {
	margin-top: 30px !important;
}

.nmx-form__sociallogin b {
	display: block;
	font-size: 18px;
	font-family: "CoreRhino65Bold", arial;
	text-transform: none;
	font-weight: normal;
	line-height: 100%;
	margin-bottom: 21px;
	border-bottom: none;
	padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
	
	.nmx-box {
		float: none;
		width: auto;
	}

	#login,
	#register {
		border: none;
		left: 0;
		padding: 0;
	}

	#login {
		border-bottom: 1px solid #E9E9E9;
		padding-bottom: 30px;
	}

	#register {
		margin-top: 30px;
	}
	
}









