:root
{
	--color-FLEX-logo-start: #000;
	--color-FLEX-logo-end: #fff;
}

body {
    background: #000;
    overflow: hidden;
}

body::before {
	display: none;
}

#Page_Footer::before, #Page_Footer::after {
    z-index: 10;
}

.frontLogin {
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: calc(var(--animation-delay) + 2s);
}

@keyframes slide-top {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100px);
    }
}

.frontLogin img {
    width: 320px;
    height: 67px;
}
:root {
    --animation-delay: 2.8s;
}
.frontLeft {
    width: 200px;
    height: 80px;
    background: #fff;
    position: absolute;
    left: 0;
    animation: scale-out-hor-left 2s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation-delay: var(--animation-delay);
}

@keyframes scale-out-hor-left {
    0% {
      transform: scaleX(1);
      transform-origin: 0 0;
      opacity: 1;
    }
    100% {
      transform: scaleX(0);
      transform-origin: 0 0;
      opacity: 1;
    }
  }

.frontRight {
    width: 200px;
    height: 80px;
    background: #fff;
    position: absolute;
    right: 0;
    animation: scale-out-hor-right 2s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation-delay: var(--animation-delay);
}

@keyframes scale-out-hor-right {
    0% {
      transform: scaleX(1);
      transform-origin: 100% 100%;
      opacity: 1;
    }
    100% {
      transform: scaleX(0);
      transform-origin: 100% 100%;
      opacity: 1;
    }
  }

.loginBox::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: 0;
    bottom: -10px;
    margin: auto;
    background: #aaa0;
    border: 1px solid #474747;
    padding: 10px;
    width: 100%;
    height: 100%;
}

.loginBox {
    width: 50%;
    max-width: 600px;
    min-width: 420px;
    max-height: 400px;
    background: #fff;
    border: 1px solid #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: scale-down-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 5s both;
}

@keyframes scale-down-center {
    0% {
      transform: scale(3);
    }
    100% {
      transform: scale(1);
    }
  }
  
/* MAIN FORM HERE */

form {
	display: grid;
	padding: 140px 20px 50px 20px;
	/* background: url(/_customers/images/ui/Pratum/login.svg); */
	background-position: left 22px top 0px;
	background-repeat: no-repeat;
	background-size: 100px;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	min-height: 240px;
	max-height: 350px;
	height: min-content;
	min-width: 390px;
	width: fit-content;
	color: #000;
	border-radius: 0px;
	z-index: 11;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 5s both;
}

@keyframes formAni {
	0% {
		opacity: 0;
		transform: scaleY(0.4);
    	transform-origin: 0% 100%;
	}
	100% {
		opacity: 1;
		transform: scaleY(1);
    	transform-origin: 0% 100%;
	}
}

form div {
	font-size: 10px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 62px;
	color: #ffffff;
	font-style: normal;
	padding:10px;
	letter-spacing: 1px;
	font-family: monospace;
}

input {
	padding: 10px 20px;
	color: #333;
	background: transparent;
	border: none;
    border-bottom: 0.5px solid #383838;
	font-size: 14px;
	outline: none;
	margin-top: 10px;
	width: 400px;
	height: 40px;
    border-radius: 0px;
	font-family: monospace;
}

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: #0A1C20;
    font-family: monospace;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

button
{
	border: none;
	color: #fff;
	cursor:pointer;
	font-weight: 800;
	font-size: 16px;
	letter-spacing: .5px;
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 10px;
	height: 40px;
	width: 195px;
    border-radius: 0px;
    font-family: monospace;
}

button.login-only.login {
	background: #000;
	color: #fff;	
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #333;
	transition: 0.3s;
}

button.login-only.register {
	background: #000;
	margin-left: 205px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #333;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #999;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 20px;
	cursor: pointer;
	font-size: 13px;
	/* grid-area: 5 / 1 / 8 / 2; */
	margin-top: 15px;
	height: 20px;
}

button.login-only.forgot:hover {
	color: #000000;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#000;
	color: #fff;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #333;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #000;
	margin-left: 205px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #333;
	transition: 0.3s;
}


