html,body {
    background-color: #222;
    color : #fff;
    font-family:'Jost', sans-serif;
    margin:0;
    padding:0;
}

#lexiplogo {
    position: absolute;
    top: 50px;
    left:10%;
    width:20%;
    max-width:30%;
}

#acslogo {
    position: absolute;
    top: 50px;
    right:10%;
    width:20%;
    max-width:30%;
}

#acsvideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.main {
    max-width:1100px;
    margin:150px auto 0;
    position:relative;
}

.strong {
    font-weight:bold;
    font-size: 110%;
    color : #d30c14;
}

.center {
    text-align: center;
    margin: auto;
}

.cta {
    margin: 1em auto;
    background-color: white;
}

.error {
    font-weight:bold;
    background-color: white;
    border : 2px solid #d30c14;
    color : #d30c14;
    padding: 1em;
    margin: 1em auto;
}

#checkmark {
    width: 25%;
}

#registeremail, .registeremail {
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
}

#registeremail label, .registeremail label {
    font-size : 140%;
    text-transform:uppercase;
    display:block;

}

.registeremail input {
    display: block;
    width:30em;
    margin: 1em;
}

.cfa {}

.cfa > a {
  display: inline-block;
  background: white;
  padding: 0.5em;
  border: 2px solid #d30c14;
  border-radius: 5px;
  text-decoration: none;
}

.cfa a:hover {
    text-decoration: underline;
}

button[type=submit]{
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    background:url('cta.png') no-repeat transparent;
    background-size: 100% 100%;
    padding: .2em 3em;
    text-transform: uppercase;

}

.main > h1 {
    padding-top:0.3em;
    clear:both;
}

.main a {
    color : #d30c14;
}

.loader {
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}
.loader::before , .loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: prixClipFix 2s linear infinite ;
}
.loader::after{
    transform: rotate3d(90, 90, 0, 180deg );
    border-color: #FF3D00;
}

@keyframes rotate {
    0%   {
        transform: rotate(0deg)
    }
    100%   {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0%   {
        clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }
    50%  {
        clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }
    75%, 100%  {
        clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }
}


svg.check-circle {
  color: #FF3D00;
}

/* BELOW IS THE ESSENTIAL CODE FOR THE ANIMATION */
@keyframes checkmark {
  0% {
    stroke-dashoffset: 50%;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

svg.check-circle polyline {
  animation: checkmark 0.5s cubic-bezier(0.55, 0.2, 0.71, -0.04) 0.7s backwards;
}

@keyframes grow-circle {
  0% {
    r: 0;
  }
}
@keyframes grow-circle-bigger {
  50% {
    opacity: 0.11;
  }
  100% {
    r: 100;
    opacity: 0;
  }
}
svg.check-circle circle.semi-transparent {
  animation: grow-circle 0.45s cubic-bezier(0.66, 0.23, 0.51, 1.23) backwards,
    grow-circle-bigger 0.9s linear 1.1s forwards;
}
svg.check-circle circle.colored {
  animation: grow-circle 0.5s cubic-bezier(0.66, 0.23, 0.51, 1.23) 0.25s
    backwards;
}