:root
{
	--color-FLEX-logo-start: #104293;
	--color-FLEX-logo-end: #ffffff;
}

body::before
{
	display: none;
}
.frontBox {
    display: block;
    width: 90%;
    max-width: 850px;
    height: auto;
    max-height: 150px;
}

.Logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url(/_customers/images/ui/Geico/Geico_logo.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 90%;
    max-width: 850px;
    height: auto;
    max-height: 150px;
	z-index: 3;
    animation: slide-in-blurred-left 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 2.8s both, 1s logoMain-ani ease-in-out 5s forwards;
}

@keyframes slide-in-blurred-left {
    0% {
      transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
      transform-origin: 100% 50%;
      filter: blur(40px);
      opacity: 0;
       }

    100% {
      transform: translateX(0) scaleY(1) scaleX(1) scale(1);
      transform-origin: 50% 50%;
      filter: blur(0);
      opacity: 1;
         }
}

@keyframes logoMain-ani {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(.3)
				   translateY(-300px)
				   translateX(0px);
	}
}

.gecko img {
	width: fit-content;
	height: fit-content;
	position: absolute;
	max-height: 200px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(calc(-100% + 10px));
	animation: 1s Gecko ease-in 6s both;
	z-index: 3;
}

@keyframes Gecko {
	0% 		{	opacity: 0;		}
	100% 	{	opacity: 1;		}
}

.angleDiv {
	clip-path: polygon(0% 65%, 100% 10%, 100% 100%, 0% 100%);
    background-color: #1063AF;
    position: fixed;
    width: 100%;
    height: 80vh;
    bottom: 0;
    right: 0;
    z-index: -1;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 6s both;
}

/*   FORM   */

form::before {
	position: absolute;
	content: "Login";
	top: 0;
	left: 0;
	color: #104293;
	font-size: 45px;
	font-weight: 800;
    font-family: system-ui;
	z-index: 4;
	display: block;
	width: 100px;
	padding: 20px 50px;
    display: none;
}

form {
	display: grid;
	padding: 125px 50px 30px 50px;	
	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;
	background-color: #fff;
	border-radius: 0px;	
	z-index: 3;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 6.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;
	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: #1063af;
	font-family: var(--form-font);
	font-size: 14px;
	font-weight: 400;
}

button
{
	border: none;
	color: #fff;
	cursor:pointer;
	font-family: sans-serif;
	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: #042862;
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #0442a7;
	transition: 0.3s;
}

button.login-only.register {
	background: #308FCB;
	margin-left: 205px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #009dff;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #104293;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 20px;
	cursor: pointer;
	font-size: 13px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 40px;
	height: 20px;
}

button.login-only.forgot:hover {
	color: #888;
	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;
}

@media screen and (width <= 600px) {
	.angleDiv {
		display: none;
	}
}
.help-link
{
	top: 0px;
	right: 65%;
}