:root { 
	--color-FLEX-logo-start: #000;
	--color-FLEX-logo-end: #FFF;
}

body {
    background: #73ca3e;
    overflow: hidden;
}
#Page_Footer
{
		z-index: 10;
}

div.frontLogo svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    height: fit-content;
    animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) 6s both;
    z-index: 11;
}
@keyframes scale-down-center {
    0% {
        transform: translateZ(0) translateY(0) scale(1);
      }
    100% {
        transform: translateZ(-400px) translateY(-100px) scale(1);
        width: 550px;
    }
}

.frontForm {
    margin: 0;
    position: absolute;
    top: calc(50% + -133px);
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 7s both;
    z-index: 5;
}

@keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.roof img {
    width: 552px;
    display: none;
}

.frontBG {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    z-index: -1; 
}

.frontBG video {
    object-fit: cover; 
    width: 100%;
    height: 100%;
    animation: opacity-in 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 7s both;
}

.CustomContent::after {
    width: 100%;
    height: 100vh;
    background: #000000a6;
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    animation: opacity-in 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 6.5s both;
}

@keyframes opacity-in {
    0%      {    opacity: 0;    }
    100%    {    opacity: 1;    }
}

.frontBG img {
    width: 100%;  
    height: auto;  
    display: block;
    animation: opacity-in 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 7s both;
    z-index: -1; 
}

/* --------------------------------------   FORM START  ----------------- */
form {
    border-radius: 6px;
    border: none;
    display: grid;
    padding: 50px 15px 50px 15px;
    position: fixed;
    top: calc(50% + -35px);
    right: 0;
    left: 0;
    margin: auto;
    min-height: 300px;
    max-height: 300px;
    height: min-content;
    min-width: 390px;
    width: fit-content;
    background: #fff;
    background-position: left 50px top 30px;
    background-repeat: no-repeat;
    background-size: 200px;
    color: #000;
    z-index: 10;
    animation: slit-in-diagonal-1 1s ease-out 7s both;
}
    
@keyframes slit-in-diagonal-1 {
    0% {
      transform: scaleY(0);
      transform-origin: 100% 0%;
      opacity: 1;
    }
    100% {
      transform: scaleY(1);
      transform-origin: 100% 0%;
      opacity: 1;
    }
}

form div {
        font-size: 12px;
        text-align: left;
        /* grid-area: 6 / 1 / 9 / 2; */
        grid-area: 6 / 1 / 8 / 1;
        margin-top: 40px;
        color: #fff;
        font-family: Helvetica, sans-serif;
        font-style: normal;
        padding:10px;
        letter-spacing: 1px;
}
    
input {
        padding: 10px 20px;
        color: #333;
        background: #fafafa;
        border-bottom: 1px solid #adadad;
        border-top: unset;
        border-left: unset;
        border-right: unset;
        font-size: 14px;
        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: #FFF;
        cursor:pointer;
        font-family: sans-serif;
        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: var(--theme-color);
        cursor: pointer;
        display: block;
        grid-area: 4 / 1 / 6 / 2;
    }
    
button.login-only.login:hover {
        background: #fff;
        border: 2px solid  var(--theme-color);
        color: var(--theme-color);
        transition: 0.3s;
    }
    
button.login-only.register {
        background: var(--theme-color-orange);
        border: none;
        color: #fff;
        margin-left: 205px;
        cursor: pointer;
        display: block;
        grid-area: 4 / 1 / 6 / 2;
    }
    
button.login-only.register:hover {
        background: #fff;
        border: 2px solid  var(--theme-color-orange);
        color: var(--theme-color-orange);
        transition: 0.3s;
    }
    
button.login-only.forgot {
        background: none;
        color: #025F9E;
        width: 50%;
        text-align: left;
        font-weight: 400;
        line-height: 20px;
        cursor: pointer;
        font-size: 13px;
        grid-area: 5 / 1 / 8 / 2;
        margin-top: 34px;
        height: 20px;
    }
    
button.login-only.forgot:hover {
        color: #ddd;
        font-weight: 400;
        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: #90dfff;
        color: #fff;
        transition: 0.3s;
    }
    
button.register-only.cancel {
        background: var(--theme-color-orange);
        margin-left: 205px;
        grid-area: 5 / 1 / 7 / 2;
    }
    
button.register-only.cancel:hover {
        background: #ff9c95;
        transition: 0.3s;
    }
/* --------------------------------------   FORM START  ----------------- */



/* -------------------------------------------------------------- LOGO ANI --------------------------------- */

 @keyframes animate-svg-stroke-1 {
    0% {
      stroke-dashoffset: 616.0216064453125px;
      stroke-dasharray: 616.0216064453125px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 616.0216064453125px;
    }
  }
  
  @keyframes animate-svg-fill-1 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 102, 0);
    }
  }
  
  .svg-elem-1 {
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both,
                 animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s both;
  }
  
  @keyframes animate-svg-stroke-2 {
    0% {
      stroke-dashoffset: 37.905582427978516px;
      stroke-dasharray: 37.905582427978516px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 37.905582427978516px;
    }
  }
  
  @keyframes animate-svg-fill-2 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-2 {
    animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.92s both,
                 animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s both;
  }
  
  @keyframes animate-svg-stroke-3 {
    0% {
      stroke-dashoffset: 20.894851684570312px;
      stroke-dasharray: 20.894851684570312px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 20.894851684570312px;
    }
  }
  
  @keyframes animate-svg-fill-3 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-3 {
    animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.04s both,
                 animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8000000000000003s both;
  }
  
  @keyframes animate-svg-stroke-4 {
    0% {
      stroke-dashoffset: 119.18229675292969px;
      stroke-dasharray: 119.18229675292969px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 119.18229675292969px;
    }
  }
  
  @keyframes animate-svg-fill-4 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-4 {
    animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1599999999999997s both,
                 animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9000000000000004s both;
  }
  
  @keyframes animate-svg-stroke-5 {
    0% {
      stroke-dashoffset: 134.0833740234375px;
      stroke-dasharray: 134.0833740234375px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 134.0833740234375px;
    }
  }
  
  @keyframes animate-svg-fill-5 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-5 {
    animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.28s both,
                 animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
  }
  
  @keyframes animate-svg-stroke-6 {
    0% {
      stroke-dashoffset: 127.14444732666016px;
      stroke-dasharray: 127.14444732666016px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 127.14444732666016px;
    }
  }
  
  @keyframes animate-svg-fill-6 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-6 {
    animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s both,
                 animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
  }
  
  @keyframes animate-svg-stroke-7 {
    0% {
      stroke-dashoffset: 105.45257568359375px;
      stroke-dasharray: 105.45257568359375px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 105.45257568359375px;
    }
  }
  
  @keyframes animate-svg-fill-7 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-7 {
    animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5199999999999996s both,
                 animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both;
  }
  
  @keyframes animate-svg-stroke-8 {
    0% {
      stroke-dashoffset: 104.31629943847656px;
      stroke-dasharray: 104.31629943847656px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 104.31629943847656px;
    }
  }
  
  @keyframes animate-svg-fill-8 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-8 {
    animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6399999999999997s both,
                 animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both;
  }
  
  @keyframes animate-svg-stroke-9 {
    0% {
      stroke-dashoffset: 127.14372253417969px;
      stroke-dasharray: 127.14372253417969px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 127.14372253417969px;
    }
  }
  
  @keyframes animate-svg-fill-9 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-9 {
    animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.76s both,
                 animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s both;
  }
  
  @keyframes animate-svg-stroke-10 {
    0% {
      stroke-dashoffset: 119.17505645751953px;
      stroke-dasharray: 119.17505645751953px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 119.17505645751953px;
    }
  }
  
  @keyframes animate-svg-fill-10 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-10 {
    animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.88s both,
                 animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both;
  }
  
  @keyframes animate-svg-stroke-11 {
    0% {
      stroke-dashoffset: 700px;
      stroke-dasharray: 700px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 700px;
    }
  }
  
  @keyframes animate-svg-fill-11 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-11 {
    animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both,
                 animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both;
  }
  