
spinner > wrap > svg {
    position: relative;
    display: block;
    animation: rotate 1.5s linear infinite;
    height: 120px;
    width: 120px;
    margin: 0 auto;
}

spinner > wrap > svg circle {
    stroke-dasharray: 1200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite 0s, color 6s ease-in-out infinite;
    stroke-linecap: round;
    fill: none;
    stroke-width: 5;
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    } 50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35;
    } 100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #000000;
    } 50% {
        stroke: #333333;
    }
}

servconnectsignin {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

servconnectsignin > content {
    position: relative;
    width: 100%;
    flex: 0 0 100%;
    max-width: 550px;
    display: block;
    padding: 0 30px;
}

servconnectsignin > content > *,
servconnectsignin > content > register > * {
    position: relative;
    width: 100%;
    display: block;
    transform: translate3d(0,0,0);
    transition: opacity .12s linear, transform .2s cubic-bezier(0.215, 0.610, 0.355, 1);
    opacity: 0;
}

servconnectsignin > content titlewrap {
    position: relative;
    width: 100%;
    display: block;
}

servconnectsignin > content titlewrap > passcheck {
    position: relative;
    width: 100%;
    display: flex;
    padding: 4px 0;
    opacity: .5;
    transition: opacity .1s linear;
}

servconnectsignin > content titlewrap > passcheck.a {
    opacity: 1;
}

servconnectsignin > content titlewrap > passcheck > p {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}

servconnectsignin > content titlewrap > passcheck > svg {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: block;
    margin: 0 6px 0 0;
    transform: scale(.5);
    stroke-width: 4px;
    transition: transform .25s cubic-bezier(0.215, 0.610, 0.355, 1), stroke-width .25s cubic-bezier(0.215, 0.610, 0.355, 1);
}

servconnectsignin > content titlewrap > passcheck.a > svg {
    stroke-width: 2px;
    transform: scale(1);
}

servconnectsignin > content titlewrap > passcheck > svg .check,
servconnectsignin > content titlewrap > passcheck > svg .circle {
    transition: stroke-dashoffset .25s cubic-bezier(0.215, 0.610, 0.355, 1);
}

servconnectsignin > content titlewrap > passcheck.a > svg .check {
    transition-delay: .12s;
}

servconnectsignin > content titlewrap > passcheck > svg .circle {
    stroke-dasharray: 58;
    stroke-dashoffset: 0;
}

servconnectsignin > content titlewrap > passcheck > svg .check {
    stroke-dasharray: 24;
    stroke-dashoffset: 25;
}

servconnectsignin > content titlewrap > passcheck.a > svg .circle {
    stroke-dasharray: 58;
    stroke-dashoffset: 16;
}

servconnectsignin > content titlewrap > passcheck.a > svg .check {
    stroke-dasharray: 24;
    stroke-dashoffset: 50;
}

servconnectsignin button {
    position: relative;
    width: 100%;
    margin: 0 0 12px 0;
}

servconnectsignin a {
    position: relative;
    width: 100%;
    padding: 10px 0;
    display: block;
    width: 100%;
}

servconnectsignin > content > signin > p:last-child {
    position: relative;
    display: block;
    margin: 32px 0 0 0;
    width: 100%;
    text-align: center;
    color: #bbbbbb !important;
    opacity: 1 !important;
}

servconnectsignin > content inputs {
    position: relative;
    width: 100%;
    display: block;
    padding: 22px 0 32px 0;
}


inputwrap {
    position: relative;
    width: 100%;
    margin: 4px 0;
    display: block;
    transition: margin .25s cubic-bezier(0.215, 0.610, 0.355, 1);
}

inputs.e inputwrap {
    margin: 28px 0;
}

inputs.e inputwrap:first-child {
    margin-top: 0;
}

inputwrap::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000000;
    content: '';
    z-index: 1;
    transform: scaleX(0);
    opacity: 0;
    transition: transform .2s cubic-bezier(0.215, 0.610, 0.355, 1), opacity .12s cubic-bezier(0.215, 0.610, 0.355, 1) .02s;
}

inputwrap:focus-within:after,
inputwrap.e::after {
    transition: transform .2s cubic-bezier(0.215, 0.610, 0.355, 1), opacity .12s cubic-bezier(0.215, 0.610, 0.355, 1);
    transform: scaleX(1);
    opacity: 1;
}

inputwrap.e::after {
    background: #ed2f20;
}

inputwrap > input:not([type="checkbox"]):not([type="radio"]):not(.no-style) {
    position: relative;
    width: 100%;
    border: unset;
    border-bottom: 1px solid #cccccc;
    border-radius: 0;
    padding: 2px;
    font-size: 15px;
}

inputwrap > p:first-of-type {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 0 2px;
    transform-origin: left center;
    transform: translate3d(0,120%,0) scale(1);
    transition: transform .12s cubic-bezier(0.215, 0.610, 0.355, 1), opacity .12s cubic-bezier(0.215, 0.610, 0.355, 1);
    pointer-events: none;
}

inputwrap:focus-within > p:first-of-type,
inputwrap.a > p:first-of-type {
    transform: translate3d(0,4px,0) scale(.85);
    opacity: .7;
}

inputwrap > p:last-of-type {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    padding: 4px 0 0 0;
    margin: 0;
    color: #ed2f20;
}





legalcard {
    position: relative;
    width: 100%;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
}

legalcard:not(:last-of-type) {
    margin: 0 0 8px 0;
}

legalcard > svg {
    position: relative;
    flex: 0 0 48px;
    margin: 0 18px 0 0;
    display: block;
    height: 48px;
    fill: unset;
    stroke: #222222;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

legalcard > content {
    position: relative;
    display: block;
    flex: 1 1;
}

legalcard > content > h6 {
    position: relative;
    width: 100%;
    font-size: 20px;
}

legalcard > content > p {
    position: relative;
    width: 100%;
    margin: 0 0 8px 0;
}

legalcard > content > a {
    position: relative;
    width: 100%;
    margin: 0;
    text-align: left;
    padding: 0;
}