@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');

:root
{
	--color-FLEX-logo-start: #000;
	--color-FLEX-logo-end: #000;

	--form-font: 'Poppins', sans-serif;
}

.js-loading *,
.js-loading *:before,
.js-loading *:after
{
	animation-play-state: paused !important;
}

body
{
	grid-template-rows: 283px minmax(399px, 1fr) 90px;
}
form
{
	position: relative;
}

@keyframes kf-FLEX-type
{
	0%
	{
		font-weight: normal;
	}
	30%
	{
		letter-spacing: 0px;
		margin-left: 0;
		font-weight:900;
		-webkit-text-stroke: 1px var(--color-FLEX-logo-start);
	}
	55%
	{
		letter-spacing: 0px;
		margin-left: 0;
		font-weight:900;
		-webkit-text-stroke: 1px var(--color-FLEX-logo-start);
	}
	100%
	{
		font-weight:normal;
		letter-spacing: 46px;
		margin-left: 24px;
	}
}
@keyframes kf-FLEX-move
{
	100%
	{
		bottom: 0;
	}
}
@keyframes kf-FLEX-text-color
{
	100%
	{
		color: var(--color-FLEX-logo-end);
	}
}
@keyframes kf-FLEX-logo-color
{
	100%
	{
		background: var(--color-FLEX-logo-end);
	}
}
#Page_Footer
{
	animation: kf-FLEX-move 500ms ease-out 2500ms forwards;
	bottom: 45%;
	height: 90px;
	position: absolute;
	width: 100%;
	z-index: 5;
}
#Page_Footer::before
{
	animation:
		kf-FLEX-type 1500ms ease-in-out forwards 200ms,
		kf-FLEX-text-color 1.5s ease-in-out 2s forwards;
	color: var(--color-FLEX-logo-start);
	content: "FLEX";
	font-family:sans-serif;
	font-size: 14px;
	left: 50%;
	letter-spacing: 46px;
	line-height: 16px;
	margin-left: 24px;
	position: absolute;
	top: 51px;
	transform: translateX(-50%);
}
#Page_Footer::after
{
	animation: kf-FLEX-logo-color 1.5s ease-in-out 2s forwards;
	background: var(--color-FLEX-logo-start);
	content: "";
	height: 100%;
	position: absolute;
	width: 100%;
	-webkit-mask: url(/_assets/images/ui/login/TVC_footer_200324_1425.png) 50% 0 no-repeat;
}

body:not(.Register) .register-only,
body.Register .login-only
{
	max-height: 0;
	max-width: 0;
	overflow: hidden;
	position: absolute;
    visibility: hidden;
}
button.login-only.register::before
{
    content: "register...";
}
button.forgot::before
{
	content: "forgot your login?";
}
button.register-only.cancel::before
{
    content: "cancel";
}
button.register-only.register::before
{
	content: "register";
}
button.login::before
{
	content: "login";
}

:root
{
	--help-delay-start: 4500ms;
}
.help-registration
{
	bottom: 50%;
	right: 50%;
	--help-title: "Registering for Site Access";
}

.browser-IE
{
	background: #C00;
	box-sizing: border-box;
	color: #FFF;
	font-size: 30px;
	left: 50%;
	min-width: 800px;
	text-align: center;
	transform: translateX(-50%);
	padding: 20px;
	position: absolute;
}
.browser-IE::before
{
	content: "Use of this site requires a modern web browser, such as\A Chrome, Firefox, MS Edge, or Safari.\A Internet Explorer is not supported.";
	white-space: pre-wrap;
}

/* ---------------- LOGIN STYLE ---------------------- */
body {
	margin: 0;
	padding: 0;
	font-family: var(--form-font);
	background: #fff;
	overflow: hidden;

}

form {
	display: grid;
	position: absolute;
	padding: 120px 20px 50px 20px;
	left:50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: url(/_customers/images/ui/BigCommerce/bc-logo-dark.svg) #fff;
	background-repeat: no-repeat;
	background-size: 200px;
	background-position-x: center;
	background-position-y: 20px;
	width: 392px;
	z-index: 100;
	border: 2px solid #333;

	animation: flip-in-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 7s both;
}

@keyframes flip-in-hor-top {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }
  

form div {
	font-size: 10px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 30px;
	color: #333;
	font-style: normal;
	padding:10px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #fff;
	border: 1px solid #333;
	font-size: 16px;
	outline: none;
	margin-top: 10px;
	width: 350px;
	height: 40px;
}

input[name="email"] {
	grid-area: 2 / 1 / 3 / 2;
}

input[name="password"] {
	grid-area: 3 / 1 / 4 / 2;	
}

input[name="code"] {
	grid-area: 4 / 1 / 5 / 2;
}

input[name="code"]::placeholder {
	color: #ccc;
}

::placeholder {
	color: #888888;
	font-family: var(--form-font);
	font-size: 14px;
	font-weight: 400;
}

button
{
	border: none;
	color: #fff;
	cursor:pointer;
	font-family: var(--form-font);
	font-weight: 600;
	font-size: 18px;
	letter-spacing: .5px;
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 10px;
	height: 40px;
	width: 170px;
}

button.login-only.login {
	background: #000;
	color: #fff;	
	cursor: pointer;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #fff;
	color:#000;
	border: 1px solid #000;
	transition: 0.3s;
}

button.login-only.register {
	background: #fff;
	border: 1px solid #000;
	color: #000;
	margin-left: 180px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #000;
	color: #FFF;
	border: 1px solid #fff;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #333;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 55px;
	cursor: pointer;
	font-size: 14px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 15px;
	height: 20px;
}

button.login-only.forgot:hover {
	color: #f87d01;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#fff;
	border: 1px solid #000;
	color: #000;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #000;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #000000;
	margin-left: 180px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #fff;
	border: 1px solid #000;
	transition: 0.3s;
	color:#000;
}

/* ************************************************* */

@keyframes animate-svg-stroke-1 {
	0% {
	  stroke-dashoffset: 1213.06298828125px;
	  stroke-dasharray: 1213.06298828125px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 1213.06298828125px;
	}
  }
  
  @keyframes animate-svg-fill-1 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(52, 49, 63);
	}
  }
  
  .svg-elem-1 {
	animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both,
				 animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s both;
  }
  
    
  #Layer_1 {
	width: 60%;
	left: 50%;
	top: 10%;
	transform: translate(-50%, 50%);
	position: absolute;
	z-index: 10;

	animation: 4s logoAni ease 3s both;
  }

  @keyframes logoAni {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
  }

  /* ---------------------- BG ------------------- */
  .aniBG {
	z-index: -1;
	position: absolute;
  }

  .bg {
	animation:slide 3s ease-in-out infinite alternate;
	animation-delay: 5s;
	background-image: linear-gradient(-60deg, #ccc 50%, #ddd 50%);
	bottom:0;
	left:-50%;
	opacity:.5;
	position:fixed;
	right:-50%;
	top:0;
	z-index:-1;
  }
  
  .bg2 {
	animation-direction:alternate-reverse;
	animation-duration:4s;
	animation-delay: 5s;
	z-index:-1;
  }
  
  .bg3 {
	animation-duration:5s;
	animation-delay: 5s;
	z-index:-1;
  }
  
  
  @keyframes slide {
	0% {
	  transform:translateX(-25%);
	}
	100% {
	  transform:translateX(25%);
	}
  }