:root {
    --animation-delay: 6s;
    --color-FLEX-logo-start: #fff;
	--color-FLEX-logo-end: #fff;
}
body {
    background: #000;
}

body::before {
	display: none;
}

/* -----------------------------------------------------------------  */
@keyframes frontAni {
    0%      {   opacity: 0;   }
    40%    	{   opacity: 1;   }
    80%    	{   opacity: 1;   }
    100%    {   opacity: 0;   }
}

.front_logo svg {
	width: 50%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	animation: 3s frontAni ease-in-out 3s both;
}

@keyframes animate-svg-stroke-1 {
	0% {
	  stroke-dashoffset: 2576.51611328125px;
	  stroke-dasharray: 2576.51611328125px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 2576.51611328125px;
	}
}
@keyframes animate-svg-fill-1 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(93, 94, 101);
	}
}
  
.svg-elem-1 {
	animation: animate-svg-stroke-1 4s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both,
				 animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
}
  
@keyframes animate-svg-stroke-2 {
	0% {
	  stroke-dashoffset: 3370.95068359375px;
	  stroke-dasharray: 3370.95068359375px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 3370.95068359375px;
	}
}
  
@keyframes animate-svg-fill-2 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(168, 39, 54);
	}
}
  
.svg-elem-2 {
	animation: animate-svg-stroke-2 4s cubic-bezier(0.47, 0, 0.745, 0.715) 3.12s both,
				 animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
}
  

/* -----------------------------------------------------------------  */
.mainBox {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 80%;
	min-width: 400px;
    max-height: 60%;
	min-height: 502px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    animation: slide-in-right .5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 6s both;
}

.boxLogo {
    width: 60%;
    min-height: 500px;
    display: block;
    position: relative;
}

.boxLogo div {
    width: 100%;
    height: 100%;
    border-radius: 16px 0 0 16px;
	position: absolute;
    animation: slide-in-right .5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.boxLogo div:nth-child(1), .boxLogo div:nth-child(1), .boxLogo div:nth-child(1),
.boxLogo div:nth-child(1), .boxLogo div:nth-child(1), .boxLogo div:nth-child(1) {
	background-size: cover;
	background-repeat: no-repeat;
	object-fit: cover;
	min-height: 500px;
}

.boxLogo div:nth-child(1) {
    animation-delay: calc(var(--animation-delay) + 0s);
	background: url(/_customers/images/ui/PFGC/img-1.jpg);
	background-position: right;	   
}
.boxLogo div:nth-child(2) {
    animation-delay: calc(var(--animation-delay) + 5s);
	background: url(/_customers/images/ui/PFGC/img-2.jpg);
	background-position: center;
}
.boxLogo div:nth-child(3) {
    animation-delay: calc(var(--animation-delay) + 10s);
	background: url(/_customers/images/ui/PFGC/img-6.jpg);
	background-position: center;
}
.boxLogo div:nth-child(4) {
    animation-delay: calc(var(--animation-delay) + 15s);
	background: url(/_customers/images/ui/PFGC/img-4.jpg);
	background-position: right;
}
.boxLogo div:nth-child(5) {
    animation-delay: calc(var(--animation-delay) + 20s);
	background: url(/_customers/images/ui/PFGC/img-5.jpg);
	background-position: right;
}
.boxLogo div:nth-child(6) {
    animation-delay: calc(var(--animation-delay) + 25s);
	background: url(/_customers/images/ui/PFGC/img-3.jpg);
	background-position: center;
}

@keyframes slide-in-right {
    0%      {   opacity: 0;   }
    100%    {   opacity: 1;   }
}

/* --------------------------------------------------------------------------------------- */

form {
        display: grid;
        padding: 60px 20px 30px 20px;
        background: url(/_customers/images/ui/PFGC/Logo-border.svg);
        background-position: center top 0;
        background-repeat: no-repeat;
        background-size: 270px;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: calc(0% + -48%);
        margin: auto;
        min-height: 240px;
        max-height: 300px;
        height: min-content;
        min-width: 390px;
        width: fit-content;
        color: #000;
        border-radius: 4px;
        z-index: 11;
        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: 40px;
	color: #333;
	font-style: normal;
	padding:10px;
	letter-spacing: 1px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #fff;
	border-bottom: 1px solid #ccc;
    border-left: none ;
    border-right: none;
    border-top: none;
	font-size: 16px;
    font-style: italic;
	outline: none;
	margin-top: 10px;
	width: 350px;
	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: 200;
}

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: 173px;
    border-radius: 0px;
}

button.login-only.login {
	background: #DE1B24;
    border-radius: 0;
	color: #fff;	
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	transition: 0.3s;
	opacity: .8;
	background: #000;
}

button.login-only.register {
	background: #204B66;
    color: #fff;
    border-radius: 0;
    opacity: 1;
	margin-left: 177px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #204B66;
	opacity: 1;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #515151;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 20px;
	cursor: pointer;
	font-size: 12px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 34px;
	height: 19px;
}

button.login-only.forgot:hover {
	color: #204B66;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#FE0002;
	border-radius: 0;
	color: #fff;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #fff;
	border: 2px solid #FE0002;
	color: #333;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #204B66;
	color: #fff;
	margin-left: 175px;
	grid-area: 5 / 1 / 7 / 2;
	border-radius: 0;
}

button.register-only.cancel:hover {
	background: #204B66;
	color: #fff;
	transition: 0.3s;
}

/* ---------------------- FORM END -------------- */

@media screen and (width <= 1130px) {
	.boxLogo {
		display: none;
	}
    form {
        right: 0;
    }
}