:root {
    --theme-color: #404041;
}

#Page_Footer::before, #Page_Footer::after {
    z-index: 2;
}

body {
    background: #000;
    overflow: hidden;
}

.frontLogo svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: fit-content;
    z-index: 2;
    animation: fade-inLogo 4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 2.8s both;
}

svg .logo_white {
    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3s both;
}

@keyframes slide-in-right {
    0% {
      transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
} 

@keyframes fade-inLogo {
    0%      {    opacity: 0;    }
    20%     {    opacity: 1;    }
    80%     {    opacity: 1;    }
    100%    {    opacity: 0;    }
}

.black_box {
    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;
}

.front_video video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%);
}

@keyframes fade-in {
    0% {
      opacity: 1;
    }
    100% {
      opacity: .9;
    }
}

/* LOGIN FORM --------------------------------------------------------------------- */
form {
	display: grid;
	padding: 100px 25px 30px 25px;	
	position: fixed;
	right: 0;
    left: 0;
	bottom: 30%;
	margin: auto;
	min-height: 240px;
	max-height: 360px;
	height: min-content;
	min-width: 400px;
	width: fit-content;
	color: #000;
    font-family: var(--font-familly);
    background-image: url(/_customers/images/ui/NCMEC/logo.png);
    background-repeat: no-repeat;    
    background-position: center top 15px;
    background-size: 230px;
	background-color: #000;
	border-radius: 20px;
    border: 1px solid #424242;	
	z-index: 3;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 7s 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: 70px;
	color: #fff;
	font-style: var(--font-familly);
	padding: 20px;
	letter-spacing: 1px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #fff;
    border: none;
	border-bottom: 1px solid #adadad;	
	outline: none;
	margin-top: 10px;
	width: 400px;
	height: 40px;
	border-radius: 3px;
}

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-style: var(--font-familly);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: .5px;
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 10px;
	height: 40px;
	width: 195px;
    border-radius: 3px;
}

button.login-only.login {
	background: var(--theme-color);
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #39C2D7;
	transition: 0.3s;
}

button.login-only.register {
	background: #39C2D7;
	margin-left: 205px;
    border: none;
    color: #fff;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: var(--theme-color);
    color: #fff;
	transition: 0.3s;
}

button.forgot::after {
	content:"";
	position: absolute;
	background: #ddd;
	width: 55%;
	height: .8px;
	right: 20px;
	bottom: 40px;
	display: none;
}

button.login-only.forgot {
	background: none;
	color: #999;
	width: 50%;
	text-align: left;
	font-weight: 500;
	line-height: 20px;
	cursor: pointer;
	font-size: 12px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 40px;
	height: 20px;
  text-transform: uppercase;
  padding: 0;
}

button.login-only.forgot:hover {
	color: var(--theme-color);
	transition: 0.3s;
}

button.register-only.register {
	background: var(--theme-color);
	color: #fff;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #AD0000;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: transparent;
    border: 2px solid #39C2D7;
    color: #fff;
	margin-left: 205px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
    background: var(--theme-color);
	color: #fff;
	transition: 0.3s;
}
/* LOGIN FORM -------------------------------------------------------------- */ 

