:root
{
	--color-FLEX-logo-start: #fff;
	--color-FLEX-logo-end: #fff;

	--form-font: "brandon-grotesque", sans-serif;
    --color: #441d1f;
}

#Page_Footer
{
	animation: kf-FLEX-move 500ms ease-out 2500ms forwards;
	bottom: 45%;
	height: 90px;
	position: absolute;
	width: 100%;
	z-index: 5;
}

body {
    background: #235FF8;
    padding: 0;
    margin: 0;
}
body::before {
  display: none;
}
.frontLogo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    animation: 4.5s frontLogo ease-out 2.5s both;
}

@keyframes frontLogo {
	0% {
		opacity: 0;
	}
  50% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
  100% {
		opacity: 0;
	}
}

.right_bg{
    background: url(/_customers/images/ui/Endeavor/endeavor.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    width: 100%;
    right: -100px;
    height: 100vh;
    animation: 1s frontLogo2 ease-out 8s both;
}

@keyframes frontLogo2 {
	0% {
		opacity: 0;
    filter: blur(16px);
	}  
  100% {
		opacity: 1;
	}
}

/* Front LOGO Animation Start */

/* Front LOGO Animation END */

/* LOGIN START HERE */

form {
	display: grid;
	padding: 70px 20px 30px 20px;	
	position: fixed;
	top: 0;
	left: 5%;
	bottom: 0;
	margin: auto;
	min-height: 240px;
	max-height: 300px;
	height: min-content;
	min-width: 390px;
	width: fit-content;

	color: #000;
	border-radius: 4px;
	/* border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(255, 255, 255, 0.09); */
	font-family: var(--font-kelson-normal);
	background: url(/_customers/images/ui/Endeavor/logo.svg);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: top 0px center;
	z-index: 3;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 7.2s both;
}

@keyframes formAni {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

form div {
	font-size: 12px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 40px;
	color: #fff;
	font-style: normal;
	padding:0px;
	letter-spacing: 0px;
	position: absolute;
	right: 60px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #fff;
	border: 1px solid #adadad;
	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: #888888;
	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: #00C9E9;
	color: #fff;	
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #004e79;
	transition: 0.3s;
    transform: translateY(-2px);
}

button.login-only.register {
	background: #00988D;
	margin-left: 205px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #004e79;
	transition: 0.3s;
    transform: translateY(-2px);
}

button.login-only.forgot {
	background: none;
	color: #e7e7e7;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 20px;
    cursor: pointer;
    font-size: 13px;
    grid-area: 5 / 1 / 8 / 2;
    margin-top: 34px;
    height: 20px;
}

button.login-only.forgot:hover {
	color: #000000;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#004e79;
	color: #fff;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #004e79;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #004e79;
	margin-left: 205px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #004e79;
	transition: 0.3s;
}
/* LOGIN END */