@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800'); 

* {
    box-sizing: border-box;
}

.bottom-sep {
    position: relative;
}

body {
    background: #f6f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    margin: 0;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

h1 {
	font-weight: bold;
	margin: 0;
	text-align: center;
}

h1 + div.wrap-input100, .checkbox + .w-full, .wrap-input100 + .w-full {
    margin-top: 30px;
}

h2 {
	text-align: center;
}

p {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

span {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 12px;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

.button {
	border-radius: 20px;
	border: 1px solid #efb827;
	background-color: #efb827;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.3s background-color, 0.3s border;
}

.button:hover, .button:active {
	background-color: #a57a0b;
	border-color: #a57a0b;
}

.button:active {
	transform: scale(0.95);
}

.button:focus {
	outline: none;
}

.button.ghost {
	background-color: transparent;
	border-color: #ffffff;
}

form {
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 60px 50px 30px;
	height: 100%;
	text-align: left;
	max-width: 650px;
	margin: 0 auto;
}

input {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	width: 100%;
}

body > .container {
	background-color: #fff;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	padding:0;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

.container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	display: block;
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.container.right-panel-active .overlay-container {
	transform: translateX(-100%);
}

.overlay {
	background: #efb827;
	background: -webkit-linear-gradient(0deg, #cc9d20, #efb827, #efb827);
	background: linear-gradient(0deg, #cc9d20, #efb827, #efb827);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.container.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.social-container {
	margin: 20px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

.toggle-password {
	cursor: pointer
}

.bottom-sep::before {
	display: none;
	top: 45px;
	content: "";
	height: 1px;
	width: 60%;
	min-width: 200px;
	max-width: 550px;
	background-color: rgba(0,0,0,0.3);
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

#whiteLogo {
    background: url(../images/REFORM_Logo_WHT.svg) no-repeat top left;
    background-size: 290px;
    width: 290px;
    height: 90px;
}

#frm_add {
	overflow-y:auto;
	display: block;
}

@media (max-width: 992px) {
	.bottom-sep::before {
		display: inline-block;
	}
	
	.wrap-input100 + .w-full, .sign-up-container .w-full {
		text-align: center;
		width:auto;
	}
	
	.button {
		width: auto;
	}
	
	.overlay {
		height: auto;
		width: 100%;
		display:block;
		position:static;
	}
	
	form {
		display:block;
	}
	
	.right-panel-active .overlay-container, #frm_add {
		display: none;
	}
	
	.overlay-container, .right-panel-active #frm_add {
		position:static;
		display: block;
	}
	
	.overlay-right {
		position:static;
		width:100%;
		transform: translateX(0);
		padding: 60px 50px 30px;
	}
	
	.overlay-left {
		display:none;
	}
	
	.header-logo {
		display: inline-block;
		position: absolute;
		margin: 0;
		padding: 0;
		left: 40px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: 501
	}

	#frm_add {
		top: 0;
		left: 0;
		right: 0;
		height: auto;
		width: 100%;
		position: relative;
		overflow-y:initial
	}

	.overlay-container {
		/* position: relative; */
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
	}
	
	.container.right-panel-active .sign-up-container, .container.right-panel-active .sign-in-container {
		position:static;
		transform:none;
		opacity:1;
		z-index:1;
	}
	
	.sign-up-container, .sign-in-container {
		display:block;
		position:static;
		width:100%;
		opacity:1;
	}
	
	
}