﻿
body {
    font-family: "Google Sans", sans-serif;
}

html,
body {
    min-height: 100%;
    height: 100%;
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    overflow-x: hidden;
}

.register_Body {
    position: relative;
    inset: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    overscroll-behavior-y: none;
}

.register_Body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--page-bg);
    background-repeat: no-repeat;
    z-index: -1;
}

.register_Main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.background_grid-square {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(59, 48, 13, 0.35) 1px, transparent 1px) 0 0 / 40px 40px,
        linear-gradient(0deg, rgba(59, 48, 13, 0.35) 1px, transparent 1px) 0 0 / 40px 40px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.background_star {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.scanlines,
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.scanlines {
    z-index: 2;
    opacity: 0.12;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 3px;
    animation: registerScanlines 6s steps(2, end) infinite;
}

.noise {
    z-index: 3;
    opacity: 0.08;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
        radial-gradient(rgba(var(--accent-rgb), 0.08) 1px, transparent 1px);
    background-size: 160px 160px, 220px 220px, 280px 280px;
    animation: registerNoise 2.4s steps(2, end) infinite;
}

.star {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 100%;
    opacity: 0.8;
    animation: moveStar linear infinite;
}

@keyframes moveStar {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-120vh) scale(0.8);
        opacity: 0;
    }
}

.register_Header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 1rem 1rem 0.5rem;
    margin-bottom: 2rem;
}

.register_Header .register_Progress {
    margin-bottom: 0;
}

.register_Logo {
    display: block;
    margin: 0 auto 1rem;
    width: min(60vw, 150px);
    height: auto;
    animation: registerFloat 6s ease-in-out infinite;
}

@keyframes registerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes registerCardFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0.25deg);
    }

    35% {
        transform: translate3d(0, -4px, 0) rotate(-0.35deg);
    }

    60% {
        transform: translate3d(2px, 2px, 0) rotate(0.4deg);
    }

    80% {
        transform: translate3d(-1px, -2px, 0) rotate(-0.2deg);
    }
}

@keyframes registerCardShake {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    25% {
        transform: translate3d(-2px, 1px, 0) rotate(-0.4deg);
    }

    50% {
        transform: translate3d(2px, -1px, 0) rotate(0.4deg);
    }

    75% {
        transform: translate3d(-1px, -2px, 0) rotate(-0.3deg);
    }

    100% {
        transform: translate3d(1px, 2px, 0) rotate(0.3deg);
    }
}

@keyframes registerCardShakeFast {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    25% {
        transform: translate3d(-1px, 1px, 0) rotate(-0.3deg);
    }

    50% {
        transform: translate3d(2px, -1px, 0) rotate(0.3deg);
    }

    75% {
        transform: translate3d(-2px, 0, 0) rotate(-0.2deg);
    }

    100% {
        transform: translate3d(1px, 1px, 0) rotate(0.2deg);
    }
}

@keyframes registerCardShakeHeavy {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    20% {
        transform: translate3d(-4px, 2px, 0) rotate(-0.6deg);
    }

    40% {
        transform: translate3d(4px, -2px, 0) rotate(0.6deg);
    }

    60% {
        transform: translate3d(-3px, -2px, 0) rotate(-0.5deg);
    }

    80% {
        transform: translate3d(3px, 2px, 0) rotate(0.5deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

@keyframes registerScanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(6px);
    }
}

@keyframes registerNoise {
    0% {
        transform: translate3d(0, 0, 0);
    }

    33% {
        transform: translate3d(-2%, 1%, 0);
    }

    66% {
        transform: translate3d(1%, -2%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 768px) {
    .register_Logo {
        width: min(70vw, 100px);
        margin-bottom: 1.5rem;
    }
}

.register_Container {
    padding: 1rem;
    display: flex;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-sizing: border-box;
    border: none;
}

.register_Container div:nth-child(1) {
    flex: 1;
    display: flex;
    gap: .5rem;
    flex-direction: column;
    justify-content: center;
    padding: 0rem 1rem;
}

.glitch-card {
    position: relative;
    transform-origin: center;
    will-change: transform;
    animation: none;

}

.glitch-card.glitch-burst {
    animation:
        registerCardFloat 9s ease-in-out infinite,
        registerCardShake 0.16s steps(2, end) infinite;
}

.glitch-card.glitch-fast {
    animation:
        registerCardFloat 9s ease-in-out infinite,
        registerCardShakeFast 0.12s steps(2, end) infinite;
}

.glitch-card.glitch-burst-heavy {
    animation:
        registerCardFloat 9s ease-in-out infinite,
        registerCardShakeHeavy 0.08s steps(2, end) infinite;
    filter: saturate(1.2);
}

.glitch-card.glitch-flash {
    filter: brightness(1.12);
    box-shadow:
        0 0 0 1px rgba(var(--accent-rgb), 0.55),
        0 0 30px rgba(var(--accent-rgb), 0.65),
        0 22px 50px rgba(0, 0, 0, 0.55);
}

.register_TextLabel {
    font-size: 15px;
    text-align: center;
    color: var(--title);
    padding-left: 0rem;
    padding-bottom: .5rem;
    font-weight: bold;
}

.register_LabelIcon {
    margin-left: 0.45rem;
    font-size: 1rem;
}


.register_Input {
  padding: .8rem 10px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: .5rem;
  background: #191919;
  color: var(--ghostwhite);
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

@media (min-width: 1024px) {
    .register_Input {
        width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

.register_Form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.register_StepPanel {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    animation: registerStepFade 220ms ease;
}

.register_StepPanel.is-active {
    display: flex;
}

.register_StepPanel.is-complete:not(.is-active) {
    display: none !important;
}

.register_StepPanel .register_Input {
    margin-bottom: 0.5rem;
}

@keyframes registerStepFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register_StepActions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.register_ActionButton {
    padding: .5rem 0;
    flex: 1;
    border: 2px solid var(--accent);
    cursor: pointer;
    border-radius: 999px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.6));

    height: 44px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, border-color 160ms ease;
}

.register_ActionButton:disabled,
.register_ActionButton.is-disabled {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.55);
    box-shadow: none;
    cursor: not-allowed;
}

.register_ActionButton:disabled .register_TextGlitch,
.register_ActionButton:disabled .glitch-text,
.register_ActionButton.is-disabled .register_TextGlitch,
.register_ActionButton.is-disabled .glitch-text {
    color: #ffffff;
    text-shadow: none;
    filter: none;
}

.register_ActionButton.is-disabled {
    pointer-events: none;
}

.register_ActionButton:disabled:hover,
.register_ActionButton.is-disabled:hover {
    transform: none;
    color: rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.register_NextButton {
    width: 44px;
    height: 44px;
    padding: 0;
    flex: 0 0 44px;
    border-radius: 50%;
    letter-spacing: 0;
}

.register_StepPanel>.register_NextButton {
    align-self: center;
}

.register_ActionButton:hover {
    transform: translateY(-1px);
    color: #ffffff;
    box-shadow:
        inset 0 0 12px rgba(var(--accent-rgb), 0.45),
        0 0 12px rgba(var(--accent-rgb), 0.7),
        0 0 28px rgba(var(--accent-rgb), 0.45);
}

.register_GlitchTarget {
    position: relative;
    overflow: hidden;
}

.loader.register_GlitchTarget {
    overflow: visible;
}

.register_GlitchTarget::after {
    --slice-0: inset(50% 50% 50% 50%);
    --slice-1: inset(80% -6px 0 0);
    --slice-2: inset(50% -6px 30% 0);
    --slice-3: inset(10% -6px 85% 0);
    --slice-4: inset(40% -6px 43% 0);
    --slice-5: inset(80% -6px 5% 0);
    content: attr(data-glitch-text);
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, transparent 3%, rgba(var(--accent-rgb), 0.65) 3%, rgba(var(--accent-rgb), 0.85) 6%, #000000 6%);
    text-shadow: -7px -7px 0 rgba(var(--accent-rgb), 0.55), 7px 7px 0 rgba(var(--accent-rgb), 0.45);
    clip-path: var(--slice-0);
    opacity: 0;
    border-radius: inherit;
    pointer-events: none;
    white-space: nowrap;
    font: inherit;
    letter-spacing: inherit;
    filter: blur(0.5px);
}

.register_GlitchTarget.is-glitching {
    animation: registerButtonGlitch 0.2s steps(2, end) infinite;
}

.register_GlitchTarget.is-glitching::after {
    display: flex;
    opacity: 1;
    animation: registerGlitch 0.3s steps(2, end) infinite;
}

.register_FinishButton {
    --move1: inset(50% 50% 50% 50%);
    --move2: inset(31% 0 40% 0);
    --move3: inset(39% 0 15% 0);
    --move4: inset(45% 0 40% 0);
}

.register_FinishButton.is-glitching {
    animation: none;
    text-shadow: -1px -1px 0 rgba(var(--accent-rgb), 0.9), 1px 1px 0 rgba(var(--accent-rgb), 0.9);
    background: transparent;
    border: none;
    box-shadow: none;
}

.register_FinishButton.is-glitching .register_TextGlitch {
    color: transparent;
    text-shadow: none;
}

.register_FinishButton.is-glitching::after {
    display: flex;
    opacity: 1;
    clip-path: var(--move1);
    animation: registerFinishGlitch 1s steps(2, end) infinite;
    text-shadow: -3px -3px 0 rgba(var(--accent-rgb), 0.9), 3px 3px 0 rgba(var(--accent-rgb), 0.9);
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.4));
    border: 2px solid var(--accent);
}

@keyframes registerGlitch {
    0% {
        clip-path: var(--slice-1);
        transform: translate(0, 0);
    }

    25% {
        clip-path: var(--slice-2);
        transform: translate(var(--register-glitch-x), var(--register-glitch-y));
    }

    50% {
        clip-path: var(--slice-3);
        transform: translate(var(--register-glitch-x-strong), var(--register-glitch-y-strong));
    }

    75% {
        clip-path: var(--slice-4);
        transform: translate(var(--register-glitch-x), var(--register-glitch-y));
    }

    100% {
        clip-path: var(--slice-1);
        transform: translate(0, 0);
    }
}

@keyframes registerLoaderGlitch {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(var(--register-glitch-x), var(--register-glitch-y));
    }
}

@keyframes registerButtonGlitch {
    0% {
        transform: translate(0, 0) skewX(0deg);
    }

    100% {
        transform: translate(var(--register-glitch-x), var(--register-glitch-y)) skewX(-6deg);
    }
}

@keyframes registerFinishGlitch {
    0% {
        clip-path: var(--move1);
        transform: translate(0px, -10px);
    }

    10% {
        clip-path: var(--move2);
        transform: translate(-10px, 10px);
    }

    20% {
        clip-path: var(--move3);
        transform: translate(10px, 0px);
    }

    30% {
        clip-path: var(--move4);
        transform: translate(-10px, 10px);
    }

    40% {
        clip-path: var(--move5);
        transform: translate(10px, -10px);
    }

    50% {
        clip-path: var(--move6);
        transform: translate(-10px, 10px);
    }

    60% {
        clip-path: var(--move1);
        transform: translate(10px, -10px);
    }

    70% {
        clip-path: var(--move3);
        transform: translate(-10px, 10px);
    }

    80% {
        clip-path: var(--move2);
        transform: translate(10px, -10px);
    }

    90% {
        clip-path: var(--move4);
        transform: translate(-10px, 10px);
    }

    100% {
        clip-path: var(--move1);
        transform: translate(0);
    }
}

.register_TextGlitch {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: inherit;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.register_TextGlitch::before,
.register_TextGlitch::after {
    display: block;
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.register_IconGlitch {
    display: inline-block;
}

.register_IconGlitch.is-glitching {
    animation: glitch 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    filter: drop-shadow(-2px 0 rgba(255, 0, 0, 0.45)) drop-shadow(2px 0 rgba(0, 230, 246, 0.45));
}

.check.register_IconGlitch.is-glitching {
    animation: registerCheckGlitch 0.2s steps(2, end) infinite;
}

.register_InputGlitch.is-glitching {
    animation: none;
    text-shadow: none;
}

.register_InputGlitch.is-glitching::placeholder {
    text-shadow: none;
    animation: none;
}

.register_TextGlitch.is-glitching {
    animation: shift 0.6s ease-in-out infinite alternate;
}

.register_TextGlitch::before,
.register_TextGlitch::after {
    display: none;
}

.register_TextGlitch.is-glitching::before,
.register_TextGlitch.is-glitching::after {
    display: block;
    opacity: 0.8;
    animation: glitch 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.register_TextGlitch.is-glitching::before {
    color: #8b00ff;
    z-index: -1;
}

.register_TextGlitch.is-glitching::after {
    color: #00e571;
    z-index: -2;
    animation-direction: reverse;
}

.register_FinishButton.is-glitching .register_TextGlitch::before,
.register_FinishButton.is-glitching .register_TextGlitch::after {
    display: none;
    opacity: 0;
}

.glitch-text {
    position: relative;
    display: inline-block;
    will-change: transform;
    text-shadow:
        -1px 0 rgba(0, 255, 234, 0.35),
        1px 0 rgba(255, 0, 194, 0.35),
        0 0 8px rgba(var(--accent-rgb), 0.2);
    filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.22));
    animation: registerTextJitter 7.4s steps(1, end) infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    pointer-events: none;
    opacity: 0.6;
    white-space: nowrap;
    mix-blend-mode: screen;
}

.glitch-text::before {
    color: #00f7ff;
    transform: translate3d(-1px, 0, 0);
    clip-path: inset(80% 0 0 0);
    animation: registerTextSliceA 3.1s steps(2, end) infinite;
}

.glitch-text::after {
    color: #ff2bd6;
    transform: translate3d(1px, 0, 0);
    clip-path: inset(0 0 78% 0);
    animation: registerTextSliceB 2.6s steps(2, end) infinite;
}

.glitch-text.glitch-burst {
    animation-duration: 1.4s;
    text-shadow:
        -2px 0 rgba(0, 255, 234, 0.6),
        2px 0 rgba(255, 0, 194, 0.6),
        0 0 12px rgba(var(--accent-rgb), 0.45);
}

.glitch-text.glitch-burst::before,
.glitch-text.glitch-burst::after {
    opacity: 0.95;
}

.glitch-text.glitch-burst::before {
    animation-duration: 0.8s;
}

.glitch-text.glitch-burst::after {
    animation-duration: 0.7s;
}

.glitch-icon-text.glitch-fast {
    animation-duration: 0.18s;
    text-shadow:
        -2px 0 rgba(0, 255, 234, 0.6),
        2px 0 rgba(255, 0, 194, 0.6),
        0 0 12px rgba(var(--accent-rgb), 0.4);
}

.glitch-icon-text.glitch-burst-heavy {
    text-shadow:
        -3px 0 rgba(0, 255, 234, 0.85),
        3px 0 rgba(255, 0, 194, 0.85),
        0 0 16px rgba(255, 0, 120, 0.35);
    filter: drop-shadow(0 0 12px rgba(var(--accent-rgb), 0.55));
}

.glitch-text.glitch-fast {
    animation-duration: 0.18s;
}

.glitch-text.glitch-fast::before {
    animation-duration: 0.09s;
}

.glitch-text.glitch-fast::after {
    animation-duration: 0.11s;
}

.glitch-text.glitch-burst-heavy {
    text-shadow:
        -3px 0 rgba(0, 255, 234, 0.85),
        3px 0 rgba(255, 0, 194, 0.85),
        0 0 18px rgba(255, 0, 120, 0.35);
    filter: drop-shadow(0 0 14px rgba(var(--accent-rgb), 0.55));
}

.glitch-text.glitch-burst-heavy::before {
    animation-name: registerTextSliceHeavyA;
    transform: translate3d(-3px, 0, 0);
    opacity: 0.95;
}

.glitch-text.glitch-burst-heavy::after {
    animation-name: registerTextSliceHeavyB;
    transform: translate3d(3px, 0, 0);
    opacity: 0.95;
}

@keyframes registerTextJitter {

    0%,
    70%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    71% {
        transform: translate3d(-1px, 0, 0);
    }

    73% {
        transform: translate3d(2px, -1px, 0);
    }

    75% {
        transform: translate3d(0, 0, 0);
    }

    88% {
        transform: translate3d(-2px, 1px, 0);
    }

    90% {
        transform: translate3d(1px, -1px, 0);
    }
}

@keyframes registerTextSliceA {
    0% {
        clip-path: inset(80% 0 0 0);
        transform: translate3d(0, 0, 0);
        opacity: 0.2;
    }

    7% {
        clip-path: inset(10% 0 78% 0);
        transform: translate3d(-3px, -1px, 0);
        opacity: 0.75;
    }

    12% {
        clip-path: inset(45% 0 40% 0);
        transform: translate3d(2px, 0, 0);
    }

    22% {
        clip-path: inset(75% 0 8% 0);
        transform: translate3d(-1px, 1px, 0);
    }

    27% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }

    100% {
        clip-path: inset(80% 0 0 0);
        opacity: 0.2;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes registerTextSliceB {
    0% {
        clip-path: inset(0 0 78% 0);
        transform: translate3d(0, 0, 0);
        opacity: 0.25;
    }

    9% {
        clip-path: inset(60% 0 15% 0);
        transform: translate3d(2px, 0, 0);
        opacity: 0.8;
    }

    18% {
        clip-path: inset(15% 0 65% 0);
        transform: translate3d(-2px, 0, 0);
    }

    33% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }

    100% {
        clip-path: inset(0 0 78% 0);
        opacity: 0.25;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes registerTextSliceHeavyA {
    0% {
        clip-path: inset(85% 0 0 0);
        transform: translate3d(0, 0, 0);
        opacity: 0.2;
    }

    6% {
        clip-path: inset(12% 0 72% 0);
        transform: translate3d(-6px, -2px, 0);
        opacity: 0.9;
    }

    12% {
        clip-path: inset(48% 0 30% 0);
        transform: translate3d(5px, 1px, 0);
    }

    18% {
        clip-path: inset(20% 0 60% 0);
        transform: translate3d(-4px, 0, 0);
    }

    24% {
        clip-path: inset(70% 0 6% 0);
        transform: translate3d(6px, -1px, 0);
    }

    30% {
        clip-path: inset(5% 0 80% 0);
        transform: translate3d(-3px, 1px, 0);
        opacity: 0.7;
    }

    38% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }

    100% {
        clip-path: inset(85% 0 0 0);
        opacity: 0.2;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes registerTextSliceHeavyB {
    0% {
        clip-path: inset(0 0 82% 0);
        transform: translate3d(0, 0, 0);
        opacity: 0.25;
    }

    5% {
        clip-path: inset(58% 0 12% 0);
        transform: translate3d(6px, 0, 0);
        opacity: 0.85;
    }

    11% {
        clip-path: inset(14% 0 68% 0);
        transform: translate3d(-5px, 1px, 0);
    }

    19% {
        clip-path: inset(40% 0 45% 0);
        transform: translate3d(4px, -1px, 0);
    }

    26% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }

    100% {
        clip-path: inset(0 0 82% 0);
        opacity: 0.25;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes registerTextGlitch {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(var(--register-glitch-x-strong), var(--register-glitch-y-strong));
    }
}

@keyframes registerTextShift {
    0% {
        transform: skewX(0deg);
    }

    100% {
        transform: skewX(-6deg);
    }
}

@keyframes registerIconGlitch {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(var(--register-glitch-x), var(--register-glitch-y));
    }
}

@keyframes registerCheckGlitch {
    0% {
        transform: translate(0, 0) scale(var(--check-scale, 1));
    }

    100% {
        transform: translate(var(--register-glitch-x), var(--register-glitch-y)) scale(var(--check-scale, 1));
    }
}

@keyframes registerInputGlitch {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(var(--register-glitch-x), var(--register-glitch-y));
    }
}

.register_Register a {
    color: white;
    text-decoration: underline;
    line-height: 1.5rem;
    font-weight: bold;
}

.register_Register a:hover {
    text-decoration: underline;
}

.register_Progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
    align-items: center;
}

.loader {
    position: relative;
    background: rgba(var(--accent-rgb), 0.12);
    border-radius: 1em;
    height: 10px;
    width: min(330px, 80vw);
    --progress: 0%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(var(--accent-rgb), 0.2);
}

.register_SuccessLoader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    z-index: 9999;
    box-shadow: none;
}

.register_SuccessLoader[hidden] {
    display: none;
}

.register_Body.is-success .register_Main {
    display: none;
}

.register_Body.is-flash-off .register_Main,
.register_Body.is-flash-off .register_SuccessLoader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bar {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.85));
    width: var(--progress, 0%);
    height: 100%;
    border-radius: 1em;
    transition: width 280ms ease;
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
}

.bar.is-glitching {
    animation: registerLoaderGlitch 0.18s steps(2, end) infinite;
    filter: drop-shadow(-2px 0 rgba(255, 0, 0, 0.35)) drop-shadow(2px 0 rgba(0, 230, 246, 0.35));
}

.check-bar-container {
    position: absolute;
    left: 0px;
    top: -7px;
    z-index: 69;
    display: flex;
    width: 100%;
    justify-content: space-around;
    height: 0.5em;
    padding: 0 0.9rem;
    gap: 0.4rem;
    box-sizing: border-box;
}

.check {
    --check-scale: 0.75;
    border-radius: 1em;
    height: 1.5em;
    width: 1.5em;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: scale(var(--check-scale));
    transition: transform 240ms ease, background-color 240ms ease;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.glitch {
    text-align: center;
    position: relative;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 5px;
    z-index: 1;
    animation: shift 0.6s ease-in-out infinite alternate;
}

.glitch:before,
.glitch:after {
    display: block;
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.glitch:before {
    animation: glitch 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: #8b00ff;
    z-index: -1;
}

.glitch:after {
    animation: glitch 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: #00e571;
    z-index: -2;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-3px, 3px);
    }

    40% {
        transform: translate(-3px, -3px);
    }

    60% {
        transform: translate(3px, 3px);
    }

    80% {
        transform: translate(3px, -3px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes shift {

    0%,
    40%,
    44%,
    58%,
    61%,
    65%,
    69%,
    73%,
    100% {
        transform: skewX(0deg);
    }

    41% {
        transform: skewX(10deg);
    }

    42% {
        transform: skewX(-10deg);
    }

    59% {
        transform: skewX(40deg) skewY(10deg);
    }

    60% {
        transform: skewX(-40deg) skewY(-10deg);
    }

    63% {
        transform: skewX(10deg) skewY(-5deg);
    }

    70% {
        transform: skewX(-50deg) skewY(-20deg);
    }

    71% {
        transform: skewX(10deg) skewY(-10deg);
    }
}

.check svg {
    display: block;
    opacity: 0.4;
    transition: opacity 240ms ease;

}

.check.is-active {
    --check-scale: 1;
    background-color: rgba(var(--accent-rgb), 0.25);
    border-color: rgba(var(--accent-rgb), 0.8);
    box-shadow:
        0 0 8px rgba(var(--accent-rgb), 0.35),
        0 0 20px rgba(var(--accent-rgb), 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.check.is-active svg {
    opacity: 1;
}

#registerLock {
    display: none;
}

.lock-state {
    display: flex;
    justify-content: center;
}

.lock-label {
    width: 1.05em;
    height: 1.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    padding: .8rem;
    position: relative;
    bottom: 1px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.lock-wrapper {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
}

.shackle {
    background-color: transparent;
    height: 0.26em;
    width: 0.44em;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top: 1.4px solid white;
    border-left: 1.4px solid white;
    border-right: 1.4px solid white;
    transition: transform 0.3s ease;
}

.shackle.is-glitching {
    animation: registerIconGlitch 0.2s steps(2, end) infinite;
}

.lock-body {
    width: 0.62em;
    height: 0.62em;
    display: block;
}

#registerLock:checked+.lock-label .lock-wrapper .shackle {
    transform: rotateY(150deg) translateX(3px);
    transform-origin: right;
}

#registerLock:checked+.lock-label {
    background-color: rgba(var(--accent-rgb), 0.25);
    border-color: rgba(var(--accent-rgb), 0.7);
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.35);
}

@media (prefers-reduced-motion: reduce) {

    .glitch-text,
    .glitch-text::before,
    .glitch-text::after,
    .glitch-text.glitch-fast,
    .glitch-text.glitch-burst-heavy,
    .glitch-icon-text,
    .glitch-icon-text.glitch-fast,
    .glitch-icon-text.glitch-burst-heavy,
    .glitch-card,
    .glitch-card::before,
    .glitch-card.glitch-fast,
    .glitch-card.glitch-burst-heavy,
    .scanlines,
    .noise,
    .register_GlitchTarget.is-glitching,
    .register_GlitchTarget.is-glitching::after {
        animation: none !important;
        transform: none !important;
    }

    .glitch-card {
        filter: none;
    }
}
