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

body > * {
    max-width:50%;
    min-width:600px;
    display:block;
    width:50%;
}

#lexiplogo, #partnerlogo {
    display: block;
    text-align: center;
}

#lexiplogo > img, #partnerlogo > img {
    min-width: 20em;
    width: 50em;
    max-width: 50%;
    margin: 1em auto;
}

#illustration > img {
    width:100%;
}

.main > div {
    margin: 1em;
}

h1 {
    color : #ec008d;
}

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

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

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

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

.hidden {
    display: none;
}

#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;
}

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

.cfa {
}

.cfa > a {
    display: inline-block;
    background: white;
    padding: 0.5em;
    border: 2px solid #ec008d;
    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 : #ec008d;
}

.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;
}