/* VynexAI immersive login and registration workspace. */
[data-webai-theme] .webai-main--auth {
    min-height: calc(100vh - 106px);
    margin-top: 12px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.webai-main--auth .webai-content {
    width: 100%;
}

.webai-main--auth .webai-auth-page {
    min-height: calc(100vh - 118px);
    padding: 30px 0 42px;
}

.webai-main--auth .webai-auth-shell {
    position: relative;
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(470px, 1.06fr);
    gap: 18px;
    align-items: stretch;
    margin: 0 auto;
}

.webai-auth-showcase {
    position: relative;
    isolation: isolate;
    min-height: 680px;
    overflow: hidden;
    border: 1px solid rgba(147, 197, 253, .32);
    border-radius: 30px;
    color: #eff8ff;
    background:
        radial-gradient(circle at 15% 5%, rgba(125, 211, 252, .5), transparent 25rem),
        radial-gradient(circle at 95% 90%, rgba(99, 102, 241, .48), transparent 24rem),
        linear-gradient(145deg, #0b5ed7 0%, #0751c4 38%, #082b72 100%);
    box-shadow: 0 28px 72px rgba(29, 78, 216, .24);
}

.webai-auth-showcase::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(219, 234, 254, .09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(219, 234, 254, .09) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .88), transparent 88%);
}

.webai-auth-showcase::after {
    position: absolute;
    z-index: -1;
    right: -16%;
    bottom: -20%;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 48px rgba(255, 255, 255, .035),
        0 0 0 96px rgba(255, 255, 255, .025);
}

.webai-auth-showcase__glow {
    position: absolute;
    z-index: -1;
    top: 26%;
    left: 74%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(56, 189, 248, .36);
    filter: blur(74px);
}

.webai-auth-showcase__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(34px, 5vw, 58px);
}

.webai-auth-showcase__badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(219, 234, 254, .28);
    border-radius: 999px;
    color: rgba(239, 248, 255, .9);
    background: rgba(4, 24, 72, .2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.webai-auth-showcase__badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7dd3fc;
    box-shadow: 0 0 0 5px rgba(125, 211, 252, .13), 0 0 16px #7dd3fc;
    animation: webai-auth-pulse 2.4s ease-in-out infinite;
}

.webai-auth-showcase h1 {
    max-width: 510px;
    margin: 34px 0 0;
    color: #f8fbff;
    font-size: clamp(40px, 4.2vw, 58px);
    font-weight: 930;
    line-height: 1.02;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.webai-auth-showcase h1 em {
    display: block;
    color: #9ee7ff;
    font-style: normal;
}

.webai-auth-showcase > .webai-auth-showcase__content > p {
    max-width: 490px;
    margin: 22px 0 0;
    color: rgba(225, 239, 255, .8);
    font-size: 16px;
    font-weight: 540;
    line-height: 1.65;
}

.webai-auth-showcase__benefits {
    display: grid;
    gap: 11px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.webai-auth-showcase__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(242, 249, 255, .9);
    font-size: 13px;
    font-weight: 700;
}

.webai-auth-showcase__benefits svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    padding: 3px;
    border: 1px solid rgba(186, 230, 253, .4);
    border-radius: 50%;
    color: #bae6fd;
    background: rgba(14, 165, 233, .2);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.webai-auth-showcase__visual {
    position: relative;
    margin-top: auto;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(219, 234, 254, .25);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(5, 26, 72, .46), rgba(12, 55, 123, .32));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 20px 44px rgba(2, 16, 53, .2);
    backdrop-filter: blur(16px) saturate(135%);
}

.webai-auth-showcase__visual::after {
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -30%;
    width: 32%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .13), transparent);
    transform: rotate(16deg);
    animation: webai-auth-scan 5.8s ease-in-out infinite;
}

.webai-auth-showcase__visual-head,
.webai-auth-showcase__visual-foot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.webai-auth-showcase__visual-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(239, 248, 255, .88);
    font-size: 11px;
    font-weight: 750;
}

.webai-auth-showcase__visual-head span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7dd3fc;
    box-shadow: 0 0 10px #38bdf8;
}

.webai-auth-showcase__visual-head b {
    color: rgba(186, 230, 253, .62);
    font-size: 9px;
    letter-spacing: .12em;
}

.webai-auth-showcase__pipeline {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 54px 1.05fr;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}

.webai-auth-showcase__prompt,
.webai-auth-showcase__preview {
    min-height: 92px;
    border: 1px solid rgba(219, 234, 254, .18);
    border-radius: 14px;
    background: rgba(224, 242, 254, .09);
}

.webai-auth-showcase__prompt {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 15px;
}

.webai-auth-showcase__prompt small {
    color: rgba(239, 248, 255, .72);
    font-size: 10px;
    font-weight: 700;
}

.webai-auth-showcase__prompt span {
    display: block;
    width: 100%;
    height: 5px;
    border-radius: 99px;
    background: rgba(219, 234, 254, .35);
}

.webai-auth-showcase__prompt span:nth-of-type(2) {
    width: 84%;
}

.webai-auth-showcase__prompt span:nth-of-type(3) {
    width: 58%;
}

.webai-auth-showcase__arrow {
    width: 54px;
    color: rgba(186, 230, 253, .72);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.webai-auth-showcase__preview {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 22%, rgba(125, 211, 252, .48), transparent 42%),
        linear-gradient(145deg, rgba(37, 99, 235, .72), rgba(8, 47, 107, .8));
}

.webai-auth-showcase__preview > i {
    position: absolute;
    border: 1px solid rgba(186, 230, 253, .22);
    border-radius: 50%;
}

.webai-auth-showcase__preview > i:nth-of-type(1) {
    width: 96px;
    height: 96px;
}

.webai-auth-showcase__preview > i:nth-of-type(2) {
    width: 66px;
    height: 66px;
}

.webai-auth-showcase__preview > i:nth-of-type(3) {
    width: 126px;
    height: 126px;
}

.webai-auth-showcase__play {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 8px 24px rgba(2, 16, 53, .3);
    backdrop-filter: blur(8px);
}

.webai-auth-showcase__play svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
}

.webai-auth-showcase__visual-foot {
    justify-content: center;
    color: rgba(219, 234, 254, .58);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.webai-auth-showcase__visual-foot i {
    width: 22px;
    height: 1px;
    background: rgba(186, 230, 253, .3);
}

[data-webai-theme] .webai-main--auth .webai-auth-form {
    min-width: 0;
    display: flex;
    align-items: center;
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid var(--vx-border);
    border-radius: 30px;
    color: var(--vx-text);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--vx-shadow-soft);
    backdrop-filter: blur(22px) saturate(145%);
}

:root[data-webai-theme="dark"] .webai-main--auth .webai-auth-form {
    background: rgba(7, 26, 48, .78);
}

.webai-main--auth .webai-auth-form .container,
.webai-main--auth .webai-auth-form .row.justify-content-center,
.webai-main--auth .webai-auth-form .row.justify-content-center > [class*="col-"] {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 !important;
}

[data-webai-theme] .webai-main--auth .webai-auth-form .auth-card,
[data-webai-theme] .webai-main--auth .webai-auth-form .auth-card.card {
    width: 100%;
    min-height: 0;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--vx-text);
    background: transparent !important;
    box-shadow: none;
}

.webai-main--auth .webai-auth-form .auth-card__left {
    display: none;
}

.webai-main--auth .webai-auth-form .auth-card__right {
    width: 100%;
    max-width: none;
    padding: 0;
}

.webai-main--auth .webai-auth-form .auth-card__header {
    padding: 0 0 26px;
    border-bottom: 1px solid var(--vx-border);
}

.webai-main--auth .webai-auth-form .auth-card__header > div {
    align-items: flex-start !important;
}

.webai-main--auth .webai-auth-form .auth-card__header-icon {
    width: 50px;
    height: 50px;
    display: grid;
    flex: 0 0 50px;
    place-items: center;
    padding: 0 !important;
    border: 1px solid var(--vx-border-strong);
    border-radius: 15px !important;
    color: var(--vx-primary);
    background: var(--vx-primary-faint) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.webai-main--auth .webai-auth-form .auth-card__header-icon svg {
    width: 23px;
    height: 23px;
    color: inherit !important;
}

.webai-auth-form__eyebrow {
    display: block;
    margin-bottom: 6px;
    color: var(--vx-primary);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.webai-main--auth .webai-auth-form .auth-card__header-title {
    margin: 0 0 7px !important;
    color: var(--vx-text) !important;
    font-size: clamp(25px, 3vw, 31px) !important;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.webai-main--auth .webai-auth-form .auth-card__header-description {
    max-width: 480px;
    margin: 0;
    color: var(--vx-muted) !important;
    font-size: 13px;
    line-height: 1.55;
}

.webai-main--auth .webai-auth-form .auth-card__body {
    padding: 26px 0 0;
}

.webai-main--auth .webai-auth-form .mb-3 {
    margin-bottom: 17px;
}

.webai-main--auth .webai-auth-form .form-label {
    margin-bottom: 8px;
    color: var(--vx-text);
    font-size: 12px;
    font-weight: 800;
}

.webai-main--auth .webai-auth-form .form-label small {
    margin-left: 4px;
    color: var(--vx-dim);
    font-size: 10px;
    font-weight: 650;
}

.webai-main--auth .webai-auth-form .position-relative {
    position: relative;
    width: 100%;
}

[data-webai-theme] .webai-main--auth .webai-auth-form .form-control,
[data-webai-theme] .webai-main--auth .webai-auth-form .form-select {
    width: 100%;
    min-height: 51px;
    padding: 0 14px 0 48px;
    border: 1px solid var(--vx-border);
    border-radius: 13px;
    outline: 0;
    color: var(--vx-text);
    caret-color: var(--vx-primary);
    background: var(--vx-surface-soft);
    font-size: 14px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

[data-webai-theme] .webai-main--auth .webai-auth-form .form-control:hover,
[data-webai-theme] .webai-main--auth .webai-auth-form .form-select:hover {
    border-color: var(--vx-border-strong);
}

[data-webai-theme] .webai-main--auth .webai-auth-form .form-control:focus,
[data-webai-theme] .webai-main--auth .webai-auth-form .form-select:focus {
    border-color: var(--vx-primary);
    background: var(--vx-surface-solid);
    box-shadow: 0 0 0 4px var(--vx-primary-faint), 0 10px 24px rgba(37, 99, 235, .08);
}

.webai-main--auth .webai-auth-form .form-control::placeholder {
    color: var(--vx-dim);
    opacity: .86;
}

.webai-main--auth .webai-auth-form .form-control:-webkit-autofill,
.webai-main--auth .webai-auth-form .form-control:-webkit-autofill:hover,
.webai-main--auth .webai-auth-form .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--vx-text);
    -webkit-box-shadow: 0 0 0 1000px var(--vx-surface-soft) inset;
    caret-color: var(--vx-primary);
}

.webai-main--auth .webai-auth-form .auth-input-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 15px;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    color: var(--vx-primary);
    background: transparent;
    transform: translateY(-50%);
    pointer-events: none;
}

.webai-main--auth .webai-auth-form .auth-input-icon svg {
    width: 19px;
    height: 19px;
}

.webai-main--auth .webai-auth-form .auth-input-icon + .iti {
    width: 100%;
}

.webai-main--auth .webai-auth-form .iti .form-control {
    padding-left: 88px !important;
}

.webai-main--auth .webai-auth-form .invalid-feedback {
    margin-top: 6px;
    color: #e11d48;
    font-size: 11px;
    font-weight: 700;
}

:root[data-webai-theme="dark"] .webai-main--auth .webai-auth-form .invalid-feedback {
    color: #fda4af;
}

.webai-auth-form__field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.webai-auth-form__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.webai-main--auth .webai-auth-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-height: 22px;
    margin: 0;
    padding: 0;
}

.webai-main--auth .webai-auth-form .form-check-input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 1px 0 0;
    border: 1px solid var(--vx-border-strong);
    border-radius: 5px;
    background-color: var(--vx-surface-soft);
    accent-color: var(--vx-primary);
    cursor: pointer;
}

.webai-main--auth .webai-auth-form .form-check-input:checked {
    border-color: var(--vx-primary);
    background-color: var(--vx-primary);
}

.webai-main--auth .webai-auth-form .form-check-input:focus {
    box-shadow: 0 0 0 3px var(--vx-primary-faint);
}

.webai-main--auth .webai-auth-form .form-check-label,
.webai-main--auth .webai-auth-form .form-check label {
    color: var(--vx-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.5;
    cursor: pointer;
}

.webai-auth-form__secure {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--vx-muted);
    font-size: 11px;
    font-weight: 700;
}

.webai-auth-form__secure i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--vx-primary);
    box-shadow: 0 0 0 4px var(--vx-primary-faint);
}

.webai-main--auth .webai-auth-form .row.g-0.mb-3 {
    align-items: center;
    row-gap: 10px;
}

.webai-main--auth .webai-auth-form .text-end a,
.webai-main--auth .webai-auth-form a {
    color: var(--vx-primary);
    font-weight: 800;
    text-decoration: none !important;
}

.webai-main--auth .webai-auth-form a:hover,
.webai-main--auth .webai-auth-form a:focus-visible {
    color: var(--vx-primary-hover);
}

[data-webai-theme] .webai-main--auth .webai-auth-form .btn,
[data-webai-theme] .webai-main--auth .webai-auth-form button[type="submit"] {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #2563eb;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #0284c7);
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
    cursor: pointer;
    transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.webai-main--auth .webai-auth-form .btn svg,
.webai-main--auth .webai-auth-form button[type="submit"] svg {
    width: 20px;
    height: 20px;
    transition: transform 180ms ease;
}

[data-webai-theme] .webai-main--auth .webai-auth-form .btn:hover,
[data-webai-theme] .webai-main--auth .webai-auth-form button[type="submit"]:hover {
    border-color: #1d4ed8;
    color: #fff;
    background: linear-gradient(135deg, #1d4ed8, #0369a1);
    box-shadow: 0 18px 34px rgba(37, 99, 235, .28);
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.webai-main--auth .webai-auth-form .btn:hover svg,
.webai-main--auth .webai-auth-form button[type="submit"]:hover svg {
    transform: translateX(3px);
}

.webai-main--auth .webai-auth-form .btn:focus-visible,
.webai-main--auth .webai-auth-form button[type="submit"]:focus-visible {
    outline: 4px solid var(--vx-primary-faint);
    outline-offset: 3px;
}

.webai-auth-form__terms {
    padding: 12px 13px !important;
    border: 1px solid var(--vx-border);
    border-radius: 12px;
    background: var(--vx-primary-faint);
}

.webai-auth-form__switch,
.webai-main--auth .webai-auth-form .mt-3.text-center {
    color: var(--vx-muted);
    font-size: 12px;
    font-weight: 650;
}

.webai-main--auth .webai-social-login {
    margin-bottom: 20px;
}

[data-webai-theme] .webai-main--auth .webai-google-login {
    min-height: 49px;
    border: 1px solid var(--vx-border);
    border-radius: 13px;
    color: var(--vx-text) !important;
    background: var(--vx-surface-soft);
    box-shadow: none;
}

[data-webai-theme] .webai-main--auth .webai-google-login:hover {
    border-color: var(--vx-primary);
    color: var(--vx-primary) !important;
    background: var(--vx-primary-faint);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .1);
}

.webai-main--auth .webai-google-login__icon {
    border-color: var(--vx-border);
    background: #fff;
}

.webai-main--auth .webai-auth-divider {
    color: var(--vx-dim);
}

.webai-main--auth .webai-auth-divider::before,
.webai-main--auth .webai-auth-divider::after {
    background: var(--vx-border);
}

.webai-main--auth .webai-auth-form .alert {
    margin-bottom: 18px;
    padding: 11px 13px;
    border: 1px solid var(--vx-border);
    border-radius: 11px;
    color: var(--vx-text);
    background: var(--vx-primary-faint);
    font-size: 12px;
}

@keyframes webai-auth-pulse {
    0%,
    100% {
        opacity: .72;
        transform: scale(.88);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes webai-auth-scan {
    0%,
    22% {
        left: -35%;
    }
    72%,
    100% {
        left: 125%;
    }
}

@media (max-width: 1080px) {
    .webai-main--auth .webai-auth-shell {
        grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
    }

    .webai-auth-showcase__content {
        padding: 38px;
    }

    .webai-auth-showcase h1 {
        font-size: 44px;
    }
}

@media (max-width: 860px) {
    .webai-main--auth .webai-auth-page {
        min-height: 0;
        padding: 22px 0 calc(120px + env(safe-area-inset-bottom));
    }

    .webai-main--auth .webai-auth-shell {
        grid-template-columns: 1fr;
        width: min(680px, 100%);
    }

    .webai-auth-showcase {
        min-height: 510px;
    }

    .webai-auth-showcase__content {
        padding: 42px;
    }

    [data-webai-theme] .webai-main--auth .webai-auth-form {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .webai-main--auth .webai-auth-page {
        padding-top: 12px;
    }

    .webai-auth-showcase,
    [data-webai-theme] .webai-main--auth .webai-auth-form {
        border-radius: 22px;
    }

    [data-webai-theme] .webai-main--auth .webai-auth-form {
        order: -1;
    }

    .webai-auth-showcase {
        min-height: 390px;
    }

    .webai-auth-showcase__content {
        padding: 28px 24px;
    }

    .webai-auth-showcase h1 {
        margin-top: 25px;
        font-size: clamp(34px, 11vw, 43px);
    }

    .webai-auth-showcase > .webai-auth-showcase__content > p {
        margin-top: 16px;
        font-size: 14px;
    }

    .webai-auth-showcase__benefits {
        gap: 8px;
        margin-top: 20px;
    }

    .webai-auth-showcase__visual {
        display: none;
    }

    [data-webai-theme] .webai-main--auth .webai-auth-form {
        padding: 28px 22px;
    }

    .webai-main--auth .webai-auth-form .auth-card__header {
        padding-bottom: 22px;
    }

    .webai-main--auth .webai-auth-form .auth-card__header > div {
        flex-direction: row !important;
    }

    .webai-main--auth .webai-auth-form .auth-card__header-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 13px !important;
    }

    .webai-main--auth .webai-auth-form .auth-card__header-title {
        font-size: 24px !important;
    }

    .webai-main--auth .webai-auth-form .auth-card__body {
        padding-top: 22px;
    }

    .webai-auth-form__field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .webai-auth-form__options {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .webai-main--auth .webai-auth-form .row.g-0.mb-3 > [class*="col-"] {
        width: 100%;
        text-align: left !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .webai-auth-showcase__badge span,
    .webai-auth-showcase__visual::after {
        animation: none;
    }

    .webai-main--auth .webai-auth-form .btn,
    .webai-main--auth .webai-auth-form button[type="submit"],
    .webai-main--auth .webai-auth-form .btn svg,
    .webai-main--auth .webai-auth-form button[type="submit"] svg {
        transition: none;
    }
}
