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;
    overflow: auto;
}

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

@media(max-height: 800px) {
    servconnectsignin {
        align-items: flex-start;
        overflow: auto;
    }

    servconnectsignin > content {
        overflow: auto;
        padding-top: 52px;
        padding-bottom: 52px;
    }
}

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:first-of-type {
    margin-top: 8px;
}

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: 6px 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, 0px, 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;
}


inputwrap.toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

inputwrap.toggle:last-of-type {
    padding-bottom: 0;
}


inputwrap.toggle > p {
    transform: unset;
    padding-right: 32px;
}

inputwrap scformtoggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    border-radius: 5000px;
    flex: 0 0 52px;
    background: #ffffff;
    border: 1px solid #cccccc;
}

inputwrap scformtoggle:not(.d) {
    cursor: pointer;
}

inputwrap scformtoggle > content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3px;
}

inputwrap scformtoggle > content > handle {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    background: #444444;
    border-radius: 50%;
    transform: translate3d(0, 0, 0);
    transition: background .2s cubic-bezier(0.215, 0.610, 0.355, 1), transform .2s cubic-bezier(0.215, 0.610, 0.355, 1);
}

inputwrap scformtoggle.a > content > handle {
    transform: translate3d(23px, 0, 0);
    background: var(--accent-color);
}

inputwrap scformtoggle:not(.d):active > content > handle {
    opacity: .8;
}




legalcard {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid #dfdfdf;
    max-height: 50vh;
    overflow: auto;
}

@media(max-height: 1000px) {
    legalcard {
        max-height: 30vh;
    }
}

@media(max-height: 800px) {
    legalcard {
        max-height: unset;
    }
}

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;
    width: 100%;
    height: auto;
}

legalcard > content > p {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.45;
    font-size: 15px;
}

legalcard > content > h1,
legalcard > content > h2,
legalcard > content > h3,
legalcard > content > h4,
legalcard > content > h5,
legalcard > content > h6 {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 650;
}

legalcard > content > h2 {
    font-size: 28px;
    font-weight: 650;
}

legalcard > content > h3 {
    font-size: 24px;
    font-weight: 650;
}

legalcard > content > h4 {
    font-size: 18px;
    font-weight: 600;
}

legalcard > content > h5 {
    font-size: 16px;
    font-weight: 600;
}

legalcard > content > h6 {
    font-size: 20px;
    font-weight: 500;
}

legalcard > content > h1:not(:first-child),
legalcard > content > h2:not(:first-child),
legalcard > content > h3:not(:first-child),
legalcard > content > h4:not(:first-child),
legalcard > content > h5:not(:first-child),
legalcard > content > h6 {
    margin-top: 32px;
}


legalcard > content > ul,
legalcard > content > ol {
    position: relative;
    display: block;
    width: 100%;
    margin: 16px 0;
    padding-left: 24px;
}

legalcard > content > ul li,
legalcard > content > ol li {
    position: relative;
    list-style-position: outside;
    line-height: 1.45;
}

legalcard > content > ul > li ol,
legalcard > content > ul > li ul,
legalcard > content > ol > li ul,
legalcard > content > ol > li ol {
    padding-left: 28px;
    margin-bottom: 16px;
}

legalcard > content > hr {
    position: relative;
    display: block;
    width: 100%;
    margin: 16px 0;
    height: 0px;
    background: #ffffff;
    color: #ffffff;
    border: 0;
    border-top: 2px dashed #e0e0e0;
    font-size: 0;
}


alertwrap {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0 0 12px 0;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    padding: 24px;
    border-radius: 8px;
}

alertwrap.error {
    border: 1px solid #ed2f20;
    background: #ed2f2011;
}

alertwrap.success {
    border: 1px solid #19ad27;
    background: #19ad2711;
}

alertwrap > svg {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    stroke: #000000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: transparent;
    margin: 0 16px 0 0;
}

alertwrap.error > svg {
    stroke: #ed2f20;
}

alertwrap.success > svg {
    stroke: #19ad27;
}

alertwrap > content {
    position: relative;
    display: block;
}

alertwrap > content > h6 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

alertwrap > content > p {
    position: relative;
    display: block;
}

alertwrap > content > p:last-of-type {
    opacity: .5;
    margin: 0;
}