body {
    background: #000;
    overflow: hidden;
    padding: 0;
    margin: 0;
    animation: 1s bodyColor ease 12.5s both;
}

@keyframes bodyColor {
    0% {
        background: #000;
    }
    100% {
        background: #fff;
    }
}

body::before {
    display: none;
}

#bg-video {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
	height: 100vh;
    user-select: none;
    pointer-events: none;
    filter: grayscale(0.8);
    aspect-ratio: 16/9;
    animation: 1s videoAni ease-out 10s both;
  }
  @keyframes videoAni {
    0%      {    opacity: 1; }
    100%    {    opacity: 0; }
  }

.mainfront_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 100%;
}
.frontBox_left {
    background: #ccc;
}
.frontBox_right {
    background: #000;
    height: 100vh;
    width: 500px;
    position: absolute;
    right: 0;
    animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 11.5s both;
}

.frontLogo {
    width: 400px;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 22%;
    margin: auto;
    background: url(/_customers/images/ui/Gilmore/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 11.5s both;
}

/*   FORM   */

form::before {
	position: absolute;
	content: "Login";
	top: 0;
	left: 0;
	color: rgb(250, 250, 250);
	font-size: 45px;
	font-weight: 700;
	z-index: 4;
	display: block;
	width: 100px;
	padding: 20px 50px;
}

form {
	display: grid;
	padding: 100px 50px 50px 50px;	
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	min-height: 240px;
	max-height: 360px;
	height: min-content;
	min-width: 400px;
	width: fit-content;
	color: #000;
	border-radius: 0px;
	background: #000;	
	z-index: 3;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 10.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: 12px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 50px;
	color: #fff;
	font-style: normal;
	padding: 20px;
	letter-spacing: 1px;
}

input {
	padding: 10px 20px;
	color: #ccc;
	background: #000;
    border: none;
	border-bottom: 1px solid #adadad;	
	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: #000;
	cursor:pointer;
	font-family: var(--font-kelson-bold);
	font-weight: 600;
	font-size: 18px;
	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: #0063A8;
	color: #fff;
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #003961;
	transition: 0.3s;
}

button.login-only.register {
	background: #D7D7D7;
	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: #b1b1b1;
	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;
	font: #fff;
	transition: 0.3s;
}
