.gtx-login-reg-wrapper {
	width: 100%;
}

.gtx-login-reg-wrapper,
#gtx-login,
#lost-password-wrapper {
	margin-bottom: 10px;
}

.gtx-login-reg-wrapper input,
.gtx-login-reg-wrapper textarea {
	display: block;
	width: 100%;
	max-width: 100%;
}

.gtx-login-reg-wrapper input[type="submit"] {
	width: auto;
	display: inline-block;
	margin-right: 15px;
}

#gtx-lost-password input[type="submit"],
#gtx-register input[type="submit"] {
	margin-left: 0px;
}

.gtx-login-reg-wrapper p {
	margin: 0 0 5px;
}

.gtx-login-reg-wrapper a {
	font-size: 12px;
}

.gtx-login-reg-wrapper .status {
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 5px;
	padding: 0;
}

/* Remove the standard webkit autofill BG color */
.gtx-login-reg-wrapper input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px #eaedf2 inset; 
    -webkit-text-fill-color: #333;
}

.gtx-login-reg-wrapper input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px #eaedf2 inset;
    -webkit-text-fill-color: #333;
} 

#lost-password-wrapper {
	display: none;
}

.gtx-form-title {
	margin: 15px 0 0px;
}

.box-red {
	color: red;
}

#login-popup {
	width: 50%;
	height: auto;
	position: fixed;
	top: 50px;
	left: 25%;
	margin-left: 0;
	z-index: 998;
	display: none;
}

#login-popup .gtx-login-reg-wrapper {
	padding: 30px;
	background: #FFF;
	border: 1px solid #AAA;
}

#login-popup .toggle-login-reg {
	position: absolute;
	top: 10px;
	left: 15px;
	z-index: 10;
	font-size: 11px;
}

#login-popup .fa {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 999;
	font-size: 20px;
	color: #AAA;
}

#login-popup .fa:hover {
	color: #333;
	cursor: pointer;
}

#login-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 997;
	background: rgba(255,255,255,0.92);
	text-align: center;
	display: none;
}

#login-popup .gtx-login-reg-wrapper {
	margin: 0 auto;
	max-width: 100%;
}

#login-popup-overlay .fa {
	font-size: 50px;
	color: #AAA;
	position: relative;
	top: 40%;
}

#login-popup, 
#login-popup .flipper {
	perspective: 1500;
	-webkit-perspective: 1500;
}
	/* flip the pane when hovered */

#login-popup.flip .flipper {
	transform: rotateY(180deg);
    transform-origin: 50% 0;
}

.front, .back {
	width: 100%;
	height: 100%;
}

/* flip speed goes here */
.flipper {
	transition: .85s;
	transform-style: preserve-3d;
	height: 100%;
	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

/* front pane, placed above back */
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
}

@media only screen and (min-width: 720px){
	.gtx-login-reg-wrapper {
		/*max-width: 60%;*/
	} 
	
}