:root
{
	--color-FLEX-logo-start: #fff;
	--color-FLEX-logo-end: #fff;
}

body {
    background: black;
    overflow: hidden;
    animation: .5s body-color ease 7s both;
}

@keyframes body-color {
    0%      { background: #000;     }
    100%    { background: #fff;     }
}

.frontVideo video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    animation: .5s front-video ease 6.9s both;
    z-index: 1;
}
@keyframes front-video {
    0%      { opacity: 1;     }
    100%    { opacity: 0;     }
}

.frontVideo2 video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    animation: .5s front-video2 ease 7s both;
    z-index: -1;
}
@keyframes front-video2 {
    0%      { opacity: 0;     }
    100%    { opacity: 1;     }
}

@keyframes fade-in {
    0% 		{	opacity: 1;    }
    100% 	{   opacity: .5;   }
}

.black_box2 {
    position: relative;
    background: #000;
	background-repeat: no-repeat;
	content: "";
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	transition: unset;
	width: 100vw;
	z-index: 1;
    animation: fade-in .5s cubic-bezier(0.390, 0.575, 0.565, 1.000) 7s both;
}

#Page_Footer::after {
	z-index: 10;
}

#Page_Footer::before {
	z-index: 10;
}

/* -------------------------------------- FORM START --------------------------------------- */
:root {
    --animation-delay: 3s;
} 

form {
	display: grid;
	padding: 110px 50px 50px 50px;
    background: url(/_customers/images/ui/PacLease/logo-black.svg) rgba(255, 255, 255, 0.4);
    background-repeat: no-repeat;
    background-size: 250px;
    background-position: center 20px;	
	position: fixed;
	top: 0;
	left: 0;
    right: 0;
	bottom: 0;
	margin: auto;
	min-height: 300px;
	max-height: 320px;
	height: min-content;
	min-width: 350px;
	width: fit-content;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

	color: #000;
	border-radius: 16px;
	backdrop-filter: blur(12.8px);
	z-index: 3;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation-delay: calc(var(--animation-delay) + 4s);
    /* display: none; */
}

@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: 12px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 40px;
	color: #fff;
	font-style: normal;
	padding:10px;
	letter-spacing: 1px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #fff;
	border-bottom: 1px solid #ccc;
    border-left: none ;
    border-right: none;
    border-top: none;
	font-size: 16px;
    font-style: italic;
	outline: none;
	margin-top: 10px;
	width: 350px;
	height: 40px;
    border-radius: 0px;
}

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: 200;
}

button
{
	border: none;
	color: #fff;
	cursor:pointer;
	font-family: var(--font-kelson-bold);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: .5px;
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 10px;
	height: 40px;
	width: 173px;
    border-radius: 0px;
}

button.login-only.login {
	background: #FE0002;
    border-radius: 0;
	color: #fff;	
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	transition: 0.3s;
	opacity: .8;
	background: #000;
}

button.login-only.register {
	background: #fff;
    border: 2px solid #FE0002;
    color: #000;
    border-radius: 0;
    opacity: 1;
	margin-left: 177px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #FE0002;
	opacity: 1;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: F000;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 20px;
	cursor: pointer;
	font-size: 12px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 34px;
	height: 19px;
}

button.login-only.forgot:hover {
	color: #000000;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#FE0002;
	border-radius: 0;
	color: #fff;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #fff;
	border: 2px solid #FE0002;
	color: #333;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #fff;
	border: 2px solid #FE0002;
	color: #333;
	margin-left: 175px;
	grid-area: 5 / 1 / 7 / 2;
	border-radius: 0;
}

button.register-only.cancel:hover {
	background: #FE0002;
	color: #fff;
	border: 2px solid #FE0002;
	transition: 0.3s;
}

/* ---------------------- FORM END -------------- */

 @keyframes animate-svg-stroke-1 {
    0% {
      stroke-dashoffset: 1912.6513671875px;
      stroke-dasharray: 1912.6513671875px;
    }
  
    100% {
      stroke-dashoffset: 3825.302734375px;
      stroke-dasharray: 1912.6513671875px;
    }
  }
  
  .svg-elem-1 {
    animation: animate-svg-stroke-1 5s cubic-bezier(0.47, 0, 0.745, 0.715) 7s infinite both;
  }
  
  @keyframes animate-svg-stroke-2 {
    0% {
      stroke-dashoffset: 3443.492431640625px;
      stroke-dasharray: 3443.492431640625px;
    }
  
    100% {
      stroke-dashoffset: 6886.98486328125px;
      stroke-dasharray: 3443.492431640625px;
    }
  }
  
  .svg-elem-2 {
    animation: animate-svg-stroke-2 5s cubic-bezier(0.47, 0, 0.745, 0.715) 7.12s infinite both;
  }


/* -------------------------------------------------------------- */
