@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');
:root
{
	--color-FLEX-logo-start: #b30707;
	--color-FLEX-logo-end: #000;

	--form-font: "Poppins", serif;
    --input-color: #fff;
    --input-border: 1px solid #ccc;
    --button-color: #fff;
}

.js-loading *,
.js-loading *:before,
.js-loading *:after
{
	animation-play-state: paused !important;
}

body
{
	grid-template-rows: 283px minmax(399px, 1fr) 90px;
}
form
{
	position: relative;
}

@keyframes kf-FLEX-type
{
	0%
	{
		font-weight: normal;
	}
	30%
	{
		letter-spacing: 0px;
		margin-left: 0;
		font-weight:900;
		-webkit-text-stroke: 1px var(--color-FLEX-logo-start);
	}
	55%
	{
		letter-spacing: 0px;
		margin-left: 0;
		font-weight:900;
		-webkit-text-stroke: 1px var(--color-FLEX-logo-start);
	}
	100%
	{
		font-weight:normal;
		letter-spacing: 46px;
		margin-left: 24px;
	}
}
@keyframes kf-FLEX-move
{
	100%
	{
		bottom: 0;
	}
}
@keyframes kf-FLEX-text-color
{
	100%
	{
		color: var(--color-FLEX-logo-end);
	}
}
@keyframes kf-FLEX-logo-color
{
	100%
	{
		background: var(--color-FLEX-logo-end);
	}
}
#Page_Footer
{
	animation: kf-FLEX-move 500ms ease-out 2500ms forwards;
	bottom: 45%;
	height: 90px;
	position: absolute;
	width: 100%;
	z-index: 4;
}
#Page_Footer::before
{
	animation:
		kf-FLEX-type 1500ms ease-in-out forwards 200ms,
		kf-FLEX-text-color 1.5s ease-in-out 2s forwards;
	color: var(--color-FLEX-logo-start);
	content: "FLEX";
	font-family:sans-serif;
	font-size: 14px;
	left: 50%;
	letter-spacing: 46px;
	line-height: 16px;
	margin-left: 24px;
	position: absolute;
	top: 51px;
	transform: translateX(-50%);
}
#Page_Footer::after
{
	animation: kf-FLEX-logo-color 1.5s ease-in-out 2s forwards;
	background: var(--color-FLEX-logo-start);
	content: "";
	height: 100%;
	position: absolute;
	width: 100%;
	-webkit-mask: url(/_assets/images/ui/login/TVC_footer_200324_1425.png) 50% 0 no-repeat;
}

body:not(.Register) .register-only,
body.Register .login-only
{
	max-height: 0;
	max-width: 0;
	overflow: hidden;
	position: absolute;
    visibility: hidden;
}
button.login-only.register::before
{
    content: "register...";
}
button.forgot::before
{
	content: "forgot your login?";
}
button.register-only.cancel::before
{
    content: "cancel";
}
button.register-only.register::before
{
	content: "register";
}
button.login::before
{
	content: "login";
}

:root
{
	--help-delay-start: 4500ms;
}
.help-registration
{
	bottom: 50%;
	right: 50%;
	--help-title: "Registering for Site Access";
}

.browser-IE
{
	background: #C00;
	box-sizing: border-box;
	color: #FFF;
	font-size: 30px;
	left: 50%;
	min-width: 800px;
	text-align: center;
	transform: translateX(-50%);
	padding: 20px;
	position: absolute;
}
.browser-IE::before
{
	content: "Use of this site requires a modern web browser, such as\A Chrome, Firefox, MS Edge, or Safari.\A Internet Explorer is not supported.";
	white-space: pre-wrap;
}

/* ------------------- LOGIN STYLE START HERE --------------------------- */

body {
    margin: 0;
    padding: 0;
    color: #ccc;
	height: auto;
	width: 100%;
	overflow: hidden;
	background-color: #FFF;
}

form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: repeat(5, 1fr); */
    grid-column-gap: 5px;
    grid-row-gap: 5px;
	
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;

    z-index: 5;
    width: 475px;
	max-height: 400px;
    padding: 90px 10px 30px 10px;
    background-image: url(/_customers/images/ui/c2virginia/logo.png);
    background-position: left top;
    background-position-y: 10px;
    background-position-x: 240px;
    background-repeat: no-repeat;
    background-size: 220px;
    
    animation: fade-in-bck 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 7s both;
}

@keyframes fade-in-bck {
	0% {
	  transform: translateZ(80px);
	  opacity: 0;
	}
	100% {
	  transform: translateZ(0);
	  opacity: 1;
	}
  }
  
form div {
    grid-area: 5 / 1 / 6 / 3;
    color: #333;
    font-size: 12px;
}

input {
    width: 300px;
    height: 40px;
    border-radius: 0px;
    background-color: var(--input-color);
    justify-content: center;
    border: none;
    outline: none;
    padding-left: 10px;
	background: #eaeaea;
}

input[name="email"] {
    grid-area: 1 / 1 / 2 / 2;
}

input[name="password"] {
    grid-area: 2 / 1 / 3 / 2;
}

input[name="code"] {
    grid-area: 3 / 1 / 4 / 2;
}

input[name="code"]::placeholder {
	color: #777777;
}

button {
    width: 150px;
    height: 40px;
    border-radius: 0px;
    border: none;
    color: var(--button-color);
    font-size: 16px;
    font-family: var(--form-font);
    text-transform: uppercase;
    font-weight: 600;
}

button.login-only.login {
    grid-area: 1 / 2 / 2 / 3;
    background: #000;
}

button.login-only.login:hover {
    background: #333;
}

button.login-only.register {
    grid-area: 2 / 2 / 3 / 3;
    background: #D7052A;
}

button.login-only.register:hover {
    background: #E94560;
}

button.login-only.forgot {
    grid-area: 4 / 1 / 5 / 3;
    color: #182c49;
    background: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0px;

	text-align: left;
	font-weight: 400;
	cursor: pointer;
	font-size: 14px;
    width: 165px;
    height: 20px;
}

button.login-only.forgot:hover {
    color: #75C2F6;
}

button.register-only.register {
    grid-area: 1 / 2 / 2 / 3;
    background: #FF6666;
}

button.register-only.register:hover {
    background: #FF2171;
}

button.register-only.cancel {
    grid-area: 2 / 2 / 3 / 3;
    background: #176B87;
}

button.register-only.cancel:hover {
    background: #64CCC5;
}

.email, .password {
    height: 5px;
}

/* --------------- LOGO ANIMATION ------------------- */

.logoSvg {
    width: 370px;
    position: absolute;
    top: -0px;
    left: -5px;
    transform: translate(0%, -3%);
}

@keyframes animate-svg-stroke-1 {
    0% {
      stroke-dashoffset: 828.1881103515625px;
      stroke-dasharray: 828.1881103515625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 828.1881103515625px;
    }
  }

  @keyframes slide-out-blurred-tl {
    0% {
      transform: translate(0, 0) skew(0deg, 0deg);
      transform-origin: 50% 50%;
      filter: blur(0);
      opacity: 1;
    }
    100% {
      transform: translate(-1000px, -1000px) skew(80deg, 10deg);
      transform-origin: 100% 0%;
      filter: blur(40px);
      opacity: 0;
    }
  }
    
  @keyframes animate-svg-fill-1 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(228, 134, 157);
    }
  }
  
  .svg-elem-1 {
    animation: animate-svg-stroke-1 2s linear 0s both,
                 animate-svg-fill-1 3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  }
  
  @keyframes animate-svg-stroke-2 {
    0% {
      stroke-dashoffset: 828.1881103515625px;
      stroke-dasharray: 828.1881103515625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 828.1881103515625px;
    }
  }
  
  @keyframes animate-svg-fill-2 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(219, 43, 78);
    }
  }
  
  .svg-elem-2 {
    animation: animate-svg-stroke-2 2s linear 0.12s both,
                 animate-svg-fill-2 3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
  }
  
  @keyframes animate-svg-stroke-3 {
    0% {
      stroke-dashoffset: 825.5901489257812px;
      stroke-dasharray: 825.5901489257812px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 825.5901489257812px;
    }
  }
  
  @keyframes animate-svg-fill-3 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(231, 185, 194);
    }
  }
  
  .svg-elem-3 {
    animation: animate-svg-stroke-3 2s linear 0.24s both,
                 animate-svg-fill-3 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  }
  
  @keyframes animate-svg-stroke-4 {
    0% {
      stroke-dashoffset: 825.590087890625px;
      stroke-dasharray: 825.590087890625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 825.590087890625px;
    }
  }
  
  @keyframes animate-svg-fill-4 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(143, 16, 40);
    }
  }
  
  .svg-elem-4 {
    animation: animate-svg-stroke-4 2s linear 0.36s both,
                 animate-svg-fill-4 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
  }
  
  @keyframes animate-svg-stroke-5 {
    0% {
      stroke-dashoffset: 825.590087890625px;
      stroke-dasharray: 825.590087890625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 825.590087890625px;
    }
  }
  
  @keyframes animate-svg-fill-5 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(177, 0, 35);
    }
  }
  
  .svg-elem-5 {
    animation: animate-svg-stroke-5 2s linear 0.48s both,
                 animate-svg-fill-5 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
  }
  
  @keyframes animate-svg-stroke-6 {
    0% {
      stroke-dashoffset: 825.5901489257812px;
      stroke-dasharray: 825.5901489257812px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 825.5901489257812px;
    }
  }
  
  @keyframes animate-svg-fill-6 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(143, 16, 40);
    }
  }
  
  .svg-elem-6 {
    animation: animate-svg-stroke-6 2s linear 0.6s both,
                 animate-svg-fill-6 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
  }
  
  @keyframes animate-svg-stroke-7 {
    0% {
      stroke-dashoffset: 825.5901489257812px;
      stroke-dasharray: 825.5901489257812px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 825.5901489257812px;
    }
  }
  
  @keyframes animate-svg-fill-7 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(207, 0, 37);
    }
  }
  
  .svg-elem-7 {
    animation: animate-svg-stroke-7 2s linear 0.72s both,
                 animate-svg-fill-7 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
  }
  
  @keyframes animate-svg-stroke-8 {
    0% {
      stroke-dashoffset: 825.5901489257812px;
      stroke-dasharray: 825.5901489257812px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 825.5901489257812px;
    }
  }
  
  @keyframes animate-svg-fill-8 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(228, 134, 157);
    }
  }
  
  .svg-elem-8 {
    animation: animate-svg-stroke-8 2s linear 0.84s both,
                 animate-svg-fill-8 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  }
  
  @keyframes animate-svg-stroke-9 {
    0% {
      stroke-dashoffset: 825.5901489257812px;
      stroke-dasharray: 825.5901489257812px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 825.5901489257812px;
    }
  }
  
  @keyframes animate-svg-fill-9 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(207, 0, 37);
    }
  }
  
  .svg-elem-9 {
    animation: animate-svg-stroke-9 2s linear 0.96s both,
                 animate-svg-fill-9 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
  }
  
  @keyframes animate-svg-stroke-10 {
    0% {
      stroke-dashoffset: 828.1910400390625px;
      stroke-dasharray: 828.1910400390625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 828.1910400390625px;
    }
  }
  
  @keyframes animate-svg-fill-10 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(228, 134, 157);
    }
  }
  
  .svg-elem-10 {
    animation: animate-svg-stroke-10 2s linear 1.08s both,
                 animate-svg-fill-10 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
  }
  
  @keyframes animate-svg-stroke-11 {
    0% {
      stroke-dashoffset: 828.1881103515625px;
      stroke-dasharray: 828.1881103515625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 828.1881103515625px;
    }
  }
  
  @keyframes animate-svg-fill-11 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(219, 43, 78);
    }
  }
  
  .svg-elem-11 {
    animation: animate-svg-stroke-11 2s linear 1.2s both,
                 animate-svg-fill-11 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
  }
  
  @keyframes animate-svg-stroke-12 {
    0% {
      stroke-dashoffset: 828.1881103515625px;
      stroke-dasharray: 828.1881103515625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 828.1881103515625px;
    }
  }
  
  @keyframes animate-svg-fill-12 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(117, 22, 37);
    }
  }
  
  .svg-elem-12 {
    animation: animate-svg-stroke-12 2s linear 1.3199999999999998s both,
                 animate-svg-fill-12 3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s both;
  }
  
  .frontLogo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    z-index: 3;

    animation: flip-in-ver-right 4s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3s both;
  }

  @keyframes flip-in-ver-right {
    0% {
      transform: rotateY(-80deg);
      opacity: 0;
      filter: blur(50px);
    }

    50% {
      transform: rotateY(0);      
      filter: blur(0px);
      opacity: 1;
    }

    80% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

 
  

