body::before { display: none;  }

body    {       overflow: hidden;
                background: var(--theme-color);  
             }

:root {
    --color-FLEX-logo-start: #fff;
	--color-FLEX-logo-end: #fff;
}

#Page_Footer {
	z-index: 100;
}
#Page_Footer::before {
	z-index: 100;
}
#Page_Footer::after {
	z-index: 100;
}

/* --------------------- LOGO -------------------- */

.frontLogo img {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    min-height: 150px;
    width: 30%;
    position: absolute;
    z-index: -2;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 5s both;
}
@keyframes slide-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-80%);
    }
  }

.blueBox {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 250px;
    width: 40%;
    position: absolute;
    background: var(--theme-color);
    animation: scale-down-hor-left 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
    z-index: -1;
}

@keyframes scale-down-hor-left {
    0% {
      transform: scaleX(1);
      transform-origin: 0% 0%;
      opacity: 1;
    }
    90% {
      transform: scaleX(0.1);
      transform-origin: 0% 0%;
      opacity: 1;
    }
    100% {
        transform: scaleX(0.1);
        transform-origin: 0% 0%;
        opacity: 0;
      }
}

/* -------------------------------- WHITE LINE ---------------------------- */
:root {
	--animation-delay: 5s;
}
.container_White {
    position: absolute;
    width: 40%;
    height: 100vh;
    right: 0;
    margin: auto;
}
.right-line {
    width: 100%;
    min-height: 10%;
    background: #FFF;
    position: relative;
    animation: slide-in-right 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.right-line:nth-child(1) {
    animation-delay: calc(var(--animation-delay) + 0.2s);
}
.right-line:nth-child(2) {
  animation-delay: calc(var(--animation-delay) + 0.3s);
}
.right-line:nth-child(3) {
  animation-delay: calc(var(--animation-delay) + 0.4s);
}
.right-line:nth-child(4) {
  animation-delay: calc(var(--animation-delay) + 0.5s);
}
.right-line:nth-child(5) {
  animation-delay: calc(var(--animation-delay) + 0.6s);
}
.right-line:nth-child(6) {
  animation-delay: calc(var(--animation-delay) + 0.7s);
}
.right-line:nth-child(7) {
  animation-delay: calc(var(--animation-delay) + 0.8s);
}
.right-line:nth-child(8) {
  animation-delay: calc(var(--animation-delay) + 0.9s);
}
.right-line:nth-child(9) {
  animation-delay: calc(var(--animation-delay) + 1s);
}
.right-line:nth-child(10) {
  animation-delay: calc(var(--animation-delay) + 1.2s);
}


@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/* -------------------------------- FRONT LOGO -------------------------- */
form {
  /* border-radius: 0px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.3px);
  -webkit-backdrop-filter: blur(5.3px);
  border: 1px solid rgba(255, 255, 255, 1); */
  
  display: grid;
  padding: 140px 50px 100px 50px;	
  position: fixed;
  bottom: 0;
  top: 0;
  right: calc(5% + -50px);
  margin: auto;
  min-height: 340px;
  max-height: 300px;
  height: min-content;
  min-width: 390px;
  width: fit-content;
  background: url(/_customers/images/ui/levainbakery/LogoBlue.svg); 
  background-position: left 50px top 45px;
  background-repeat: no-repeat;
  background-size: 150px;
  color: #000;
  z-index: 7;
  animation: formAni 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 6.5s both;
}
  
@keyframes formAni {
    0% {
      opacity: 0;
      filter: blur(16px);
    }
    100% {
      opacity: 1;
      filter: blur(0);
    }
}
form div {
    font-size: 12px;
    text-align: left;
    grid-area: 6 / 1 / 9 / 2;
    margin-top: 40px;
    color: var(--theme-color);
    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: 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: 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: 1px solid var(--theme-color);
    transition: 0.3s;
    color: var(--theme-color);
  }
  
button.login-only.register {
    background: #bad9f6;
    color: var(--theme-color);
    margin-left: 205px;
    cursor: pointer;
    display: block;
    grid-area: 4 / 1 / 6 / 2;
  }
  
button.login-only.register:hover {
    background: #fff;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    transition: 0.3s;
  }
  
button.login-only.forgot {
    background: none;
    color: var(--theme-color);
    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: #bad9f6;
    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: #fff;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    transition: 0.3s;
  }
  
  button.register-only.cancel {
    background: #bad9f6;
    color: var(--theme-color);
    margin-left: 205px;
    grid-area: 5 / 1 / 7 / 2;
  }
  
  button.register-only.cancel:hover {
    background: #FFF;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    transition: 0.3s;
  }

  /* ----------------------------------- FORM END ---------------------------- */

  @media screen and (width <= 1150px) {
    .container_White {
      width: 50%;
    }
    form {
      right: calc(5% + -30px);
    }
  }

  @media screen and (width <= 900px) {
    .container_White {
      width: 55%;
    }
    form {
      right: calc(5% + -50px);
    }
  }
  @media screen and (width <= 800px) {
    .container_White {
      width: 100%;
    }
    form {
      right: 0;
      left: 0;
    }
  }

.help-registration {
	bottom: 55%;
	right: 29%;
}