@import url("https://use.typekit.net/jvl6ifv.css");

:root
{
	--color-FLEX-logo-start: #ffcc33;
	--color-FLEX-logo-end: #fff;

	--form-font: "brandon-grotesque", sans-serif;
    --color: #441d1f;
}
@font-face
{
	font-family: "brandon-grotesque", sans-serif;
	src: url(./fonts/BrandonGrotesque-Regular.otf) format('otf');
}
#Page_Footer
{
	animation: kf-FLEX-move 500ms ease-out 2500ms forwards;
	bottom: 45%;
	height: 90px;
	position: absolute;
	width: 100%;
    z-index: 10;
}
.help-registration
{
	bottom: 33%;
	right: 17%;
	--help-title: "Registering for Site Access";
}

/* ------------------------------------------------------------------ */

:root {
    --logo-color: #ffcc33;
}

body {
    background: #000;
    overflow: hidden;
}
.frontLogo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 350px;
    height: 400px;
    z-index: 2;
    animation: .5s frontLogo-onlyAni ease-in 5.9s both;
}
@keyframes frontLogo-onlyAni {
    0%   {    opacity: 1; }
    100% {  opacity: 0;   }
}

.frontLogoBlackout {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 350px;
    height: 400px;
    background: #000000;
    z-index: 3;
    animation: scale-out-ver-top 4s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2.5s both;
}

@keyframes scale-out-ver-top {
    0% {
      transform: scaleY(1);
      transform-origin: 100% 0%;
      opacity: 1;
    }
    50% {
      transform: scaleY(0);
      transform-origin: 100% 0%;
      opacity: 1;
    }
    80% {
        transform: scaleY(0);
        transform-origin: 100% 0%;
        opacity: 1;
      }
    95% {
        transform: scaleY(1);
        transform-origin: 100% 0%;
        opacity: 1;
    }
    100% {
        transform: scaleY(1);
        transform-origin: 100% 0%;
        opacity: 0;
      }
}

.topBar {
    width: 110%;
    background: #000;
    height: 300px;
    rotate: -3deg;
    position: absolute;
    border-bottom: #ffcc33 solid 5px;
    z-index: 3;
    top: -155px;
    left: -25px;
    animation: .5s frontLogoAni ease-in 6.5s both;
}
.botBar {
    background: #000;
    border-top: #ffcc33 solid 5px;
    width: 110%;
    height: 300px;
    rotate: -3deg;
    position: absolute;
    z-index: 3;
    bottom: -50px;
    left: -10px;
    animation: .5s frontLogoAni ease-in 6.5s both;
}
.FrontVideo {
    position: fixed;
    background: rgba(3, 172, 240, 0.5);
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    z-index: 1;
    animation: .5s frontLogoAni ease-in 6.5s both;
}

.FrontVideo2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100vw;
    background: #000000ab;
    background-repeat: repeat;
    background-size: 5%;
    opacity: .5;
    z-index: 2;
    animation: .5s frontLogoAni ease-in 6.5s both;
}
/*  */
@keyframes frontLogoAni {
    0%   {    opacity: 0; }
    100% {  opacity: 1;   }
}

.LogoLeft {
    position: absolute;
    left: 50px;
    top: 50px;
    width: 160px;
    height: auto;
    z-index: 5;
    animation: .5s frontLogoAni ease-in 6.5s both;
}

/* ---------- FORM --------- */

form {
	display: grid;
	padding: 50px 20px 30px 20px;
	
	position: fixed;
	right: 50px;
	bottom: 100px;
	margin: auto;
	min-height: 240px;
	max-height: 300px;
	height: min-content;
	min-width: 390px;
	width: fit-content;

	color: #000;
	border-radius: 16px;
	/* border: 1px solid rgba(255, 255, 255, 0.09);*/
	background: rgb(0, 0, 0); 
	font-family: var(--font-kelson-normal);
	
	z-index: 5;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 7s 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: 12px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 40px;
	color: #ffcc33;
	font-style: normal;
	padding:10px;
	letter-spacing: 1px;
}

input {
	padding: 10px 20px;
	color: #fff;
	background: #000;
	border-bottom: 1px solid #adadad;
    border-top: none;
    border-left: none;
    border-right: none;
	font-size: 18px;
	outline: none;
	margin-top: 10px;
	width: 400px;
	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: #ccc;
	font-family: var(--form-font);
	font-size: 14px;
	font-weight: 400;
}

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: 195px;
    border-radius: 0px;
}

button.login-only.login {
	background: var(--logo-color);
	color: #000;	
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #ca2d06;
	transition: 0.3s;
}

button.login-only.register {
	background: #4BAC10;
    
	margin-left: 205px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #0ba57c;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #858585;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 65px;
	cursor: pointer;
	font-size: 13px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 15px;
	height: 20px;
}

button.login-only.forgot:hover {
	color: #fff;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#8CC63F;
	color: #fff;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #15BEF0;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #136BBC;
	margin-left: 205px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #383838;
	transition: 0.3s;
}

/* --------------- FORM END ------------- */