* {
  margin:0;
  padding:0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased !important;
  scrollbar-width: thin;
  scrollbar-color: #ff5000 #111111;
}

/* Works on Chrome/Edge/Safari */
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: #23252b;
}
*::-webkit-scrollbar-thumb {
  background-color: #ff5000;
  border-radius:16px;
  border: 1px solid #23252b;
}

html {
	scroll-behavior: smooth;
}

@font-face {
    font-family: "Michroma";
	font-weight: normal;
	font-style: normal;
	src: url(/fonts/Michroma/Michroma-Regular.ttf) format("truetype");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 400;
	src: url(/fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf) format("truetype");
}

@font-face {
	font-family: "Open Sans Italic";
	font-style: italic;
	font-weight: 400;
	src: url(/fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf) format("truetype");
}

html,body {
	background: #23252b;
}

.bottom-sep {
    position: relative;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Michroma', sans-serif;
    font-weight: 200;
    font-size: 17px;
    height: 100%;
    margin: 0;
    color: #ddd;
    background-color: #23252b;
    text-align: center;
}

@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;
	text-align: center;
}

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

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

.button {
	border-radius: 0;
	border: 1px solid #ff5000;
	background-color: #ff5000;
	color: #ffffff;
	font-size: 17px;
	font-weight: 400;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.3s background-color, 0.3s color, 0.3s border;
	width: 200px;
}

.button:hover, .button:active {
	color: #ff5000;
	-webkit-box-shadow: 0 0 10px #ff5500, 0 0 40px #ff5500, 0 0 80px #ff5500;
	-moz-box-shadow:0 0 10px #ff5500, 0 0 40px #ff5500, 0 0 80px #ff5500;
	box-shadow: 0 0 10px #ff5500, 0 0 40px #ff5500, 0 0 80px #ff5500;
	background-color:#ffffff;
	border-color: #ffffff;
}

.button.ghost:hover, .button.ghost:active {
	border-color: #fff;
	color: #ff5000;
	background-color: #ffffff;
}

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

.button:focus {
	outline: none;
}

.button.ghost {
	background-color: transparent;
	border-color: #ddd;
	color: #ddd;
	transition: 0.3s all ease-in-out;
	width: 200px;
	display: block;
	margin: 10px auto 0;
}

form {
	background-color: #23252b;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 60px 50px 60px;
	height: 100%;
	text-align: left;
	margin: 0 auto;
	overflow: hidden;
}

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

body > .container {
	background-color: #23252b;
	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: 100%;
	z-index: 2;
}

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

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

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

.MaxWidth650 {
	max-width:650px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	width:100%;
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	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: #23252b;
	/* background: -webkit-linear-gradient(0deg, #af3700, #ff5000, #ff5000); */
	/* background: linear-gradient(0deg, #af3700, #ff5000, #ff5000); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #ddd;
	position: relative;
	left: -50%;
	height: 100%;
	width: 100%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

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

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

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

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

.overlay-right {
	right: 0;
	transform: translateX(0);
	display: block;
	height: 100%;
}

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

.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: 55px;
	content: "";
	height: 1px;
	width: 60%;
	min-width: 200px;
	max-width: 550px;
	background-color: rgba(255,255,255,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, #frm_Login {
	overflow-y:auto;
	display: block;
}

#frm_Login .wrap-input100 {
	max-width:580px;
}

.sign-up-container, .sign-in-container {
	background: #23252b;
}

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

.sign-up-container, .sign-in-container {
	display:block;
	position:static;
	width: 100%;
	opacity:1;
}

.wrap-input100 + .w-full, .sign-up-container .w-full {
	text-align: center;
	width:auto;
}

@media (min-height: 804px) {
	#frm_add {
		display: flex;
	}
}

@media (min-height: 455px) {
	#frm_Login {
		display: flex;
	}
}

@media (max-width: 992px) {
	.bottom-sep::before {
		display: inline-block;
	}
	
	.button {
		/* width: auto; */
	}
	
	.overlay {
		height: auto;
		width: 100%;
		display:block;
		position:static;
	}
	
	form {
		display:block;
	}

	.overlay-container, .right-panel-active #frm_add {
		position:static;
		display: block;
	}
	
	.overlay-right {
		position:static;
		width:100%;
		transform: translateX(0);
		padding: 30px 50px 60px;
	}
	
	.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
	}

	.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;
	}
}

@media (min-width:993px) {
	@media (min-height: 385px){
		.overlay-panel.overlay-left {
			display:flex;
			flex-direction:column;
			align-items:center;
		}
	}
	@media (min-height: 339px){
	.overlay-panel.overlay-right {
			display:flex;
			flex-direction:column;
			align-items:center;
		}
	}
}