body {
    background: #009EDA;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
	height: 100vh;
    user-select: none;
    pointer-events: none;
    aspect-ratio: 16/9;
    animation: 1s videoAni ease-out 6s both;
}
  @keyframes videoAni {
    0%      {    opacity: 1; }
    100%    {    opacity: 0; }
}

body::before {
	display: none;
}

.whiteBox {
    width: 100%;
    height: 60%;
    position: absolute;
    z-index: -1;
    margin: auto;
    top: 0;
    bottom: 0;
    background: #fff;
    animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 7s 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: 110px 0px 50px 0px;	
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
    left: 0;
	margin: auto;
	min-height: 240px;
	max-height: 360px;
	height: min-content;
	min-width: 400px;
	width: fit-content;
	color: #000;
	border-radius: 0px;	
	z-index: 3;
    background: url(/_customers/images/ui/ATT/logo.svg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 250px;
	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: 30px;
	color: #333;
	font-style: normal;
	padding: 5px 10px;
	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: 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: 'poppins';
	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: #009eda;
	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: #13171b;
	color: #FFF;
	margin-left: 205px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #808080;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #b1b1b1;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 0px;
	cursor: pointer;
	font-size: 13px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 35px;
	height: 25px;
}

button.login-only.forgot:hover {
	color: #808080;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#009eda;
	color: #fff;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #003961;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #13171b;
	color: #FFFFFF;
	margin-left: 205px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #808080;
	color: #fff;
	transition: 0.3s;
}
