@font-face {
    font-family: "AdaWebinarPortal";
    src:
        url("/assets/fonts/vazirmatn-arabic-wght-normal-v3175.woff2")
        format("woff2-variations");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
    unicode-range:
        U+0600-06FF,
        U+0750-077F,
        U+08A0-08FF,
        U+FB50-FDFF,
        U+FE70-FEFF;
}

@font-face {
    font-family: "AdaWebinarPortal";
    src:
        url("/assets/fonts/vazirmatn-latin-wght-normal-v3175.woff2")
        format("woff2-variations");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
    unicode-range:
        U+0000-024F;
}

:root {
    --awsp-v3365g-navy: #173454;
    --awsp-v3365g-navy-deep: #102a45;
    --awsp-v3365g-purple: #9759e7;
    --awsp-v3365g-purple-dark: #7d43ca;
    --awsp-v3365g-turquoise: #96cdcd;
    --awsp-v3365g-light-blue: #aad2f1;

    --awsp-v3365g-page: #f5f7fa;
    --awsp-v3365g-surface: #ffffff;
    --awsp-v3365g-text: #173454;
    --awsp-v3365g-muted: #66758a;
    --awsp-v3365g-border: #e3e8ef;
    --awsp-v3365g-border-strong: #cfd8e3;

    --awsp-v3365g-success: #157a55;
    --awsp-v3365g-success-bg: #edf8f3;
    --awsp-v3365g-error: #a72929;
    --awsp-v3365g-error-bg: #fff1f1;

    --awsp-v3365g-focus:
        0 0 0 4px rgba(151, 89, 231, .15);

    --awsp-v3365g-shadow:
        0 24px 70px rgba(23, 52, 84, .12);

    --awsp-v3365g-radius-shell: 28px;
    --awsp-v3365g-radius-control: 13px;

    --awsp-v3365g-transition:
        180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--awsp-v3365g-page);
    color-scheme: light;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body.awsp-v3365g-body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    background: var(--awsp-v3365g-page);
    color: var(--awsp-v3365g-text);
    font-family:
        "AdaWebinarPortal",
        "Vazirmatn",
        "Vazir",
        Tahoma,
        Arial,
        sans-serif;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

[hidden] {
    display: none !important;
}

.awsp-v3365g-page {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

.awsp-v3365g-auth-stage {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding:
        max(24px, env(safe-area-inset-top))
        max(24px, env(safe-area-inset-right))
        max(24px, env(safe-area-inset-bottom))
        max(24px, env(safe-area-inset-left));
}

.awsp-v3365g-shell {
    width: min(1180px, 100%);
    min-height: min(740px, calc(100dvh - 48px));
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(390px, .92fr);
    grid-template-areas: "brand form";
    overflow: hidden;
    border: 1px solid rgba(23, 52, 84, .09);
    border-radius: var(--awsp-v3365g-radius-shell);
    background: var(--awsp-v3365g-surface);
    box-shadow: var(--awsp-v3365g-shadow);
    animation:
        awsp-v3365g-shell-in
        420ms
        ease-out
        both;
}

.awsp-v3365g-brand-panel {
    grid-area: brand;
    position: relative;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    padding: clamp(38px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(151, 89, 231, .18),
            transparent 31%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(150, 205, 205, .13),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #173454 0%,
            #102b47 56%,
            #0e263f 100%
        );
    color: #ffffff;
}

.awsp-v3365g-brand-panel::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    top: -230px;
    left: -180px;
    border-radius: 50%;
    background: rgba(151, 89, 231, .19);
}

.awsp-v3365g-brand-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 340px;
    height: 340px;
    right: -210px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(150, 205, 205, .14);
}

.awsp-v3365g-brand-content {
    position: relative;
    z-index: 2;
}

.awsp-v3365g-brand-lockup {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 64px;
}

.awsp-v3365g-logo {
    width: min(176px, 42vw);
    height: 56px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
    object-position: right center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.awsp-v3365g-brand-lockup > div {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.awsp-v3365g-brand-lockup strong {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.2px;
}

.awsp-v3365g-brand-lockup span {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.7;
}

.awsp-v3365g-brand-copy {
    max-width: 540px;
    margin-top: clamp(54px, 8vh, 94px);
}

.awsp-v3365g-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 500;
    direction: ltr;
}

.awsp-v3365g-brand-copy h1 {
    max-width: 530px;
    margin: 22px 0 14px;
    color: #ffffff;
    font-size: clamp(34px, 4.2vw, 42px);
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: -.5px;
}

.awsp-v3365g-brand-copy p {
    max-width: 510px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 2;
}

.awsp-v3365g-benefits {
    max-width: 540px;
    margin: 36px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.awsp-v3365g-benefits li {
    min-width: 0;
    padding: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 15px;
    background: rgba(255, 255, 255, .055);
}

.awsp-v3365g-benefits li > span {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    margin-top: 7px;
    border: 2px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(150, 205, 205, .12);
}

.awsp-v3365g-benefits b,
.awsp-v3365g-benefits small {
    display: block;
}

.awsp-v3365g-benefits b {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.7;
}

.awsp-v3365g-benefits small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .60);
    font-size: 11px;
    line-height: 1.7;
}

.awsp-v3365g-visual {
    position: relative;
    z-index: 2;
    width: min(400px, 86%);
    height: 184px;
    margin: 38px auto 0;
}

.awsp-v3365g-video-window {
    position: absolute;
    inset: 8px 28px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    background: rgba(255, 255, 255, .095);
    box-shadow:
        0 18px 45px rgba(5, 18, 33, .20);
}

.awsp-v3365g-video-head {
    height: 34px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.awsp-v3365g-video-head i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.awsp-v3365g-video-body {
    position: relative;
    height: calc(100% - 34px);
}

.awsp-v3365g-video-body .speaker {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(255, 255, 255, .80) 0 12px,
            transparent 13px
        ),
        radial-gradient(
            ellipse at 50% 94%,
            rgba(255, 255, 255, .36) 0 28px,
            transparent 29px
        ),
        rgba(255, 255, 255, .09);
}

.awsp-v3365g-video-body .participant {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 13px;
    background:
        radial-gradient(
            circle at 50% 39%,
            rgba(255, 255, 255, .62) 0 7px,
            transparent 8px
        ),
        radial-gradient(
            ellipse at 50% 100%,
            rgba(255, 255, 255, .23) 0 15px,
            transparent 16px
        ),
        rgba(255, 255, 255, .065);
}

.awsp-v3365g-video-body .participant.one {
    top: 24px;
    left: 32px;
}

.awsp-v3365g-video-body .participant.two {
    top: 76px;
    left: 32px;
}

.awsp-v3365g-video-body .participant.three {
    top: 76px;
    left: 83px;
}

.awsp-v3365g-wave {
    position: absolute;
    right: 120px;
    bottom: 28px;
    height: 34px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.awsp-v3365g-wave i {
    width: 4px;
    border-radius: 999px;
    background: var(--awsp-v3365g-turquoise);
    opacity: .85;
}

.awsp-v3365g-wave i:nth-child(1) {
    height: 12px;
}

.awsp-v3365g-wave i:nth-child(2) {
    height: 24px;
}

.awsp-v3365g-wave i:nth-child(3) {
    height: 32px;
}

.awsp-v3365g-wave i:nth-child(4) {
    height: 20px;
}

.awsp-v3365g-wave i:nth-child(5) {
    height: 10px;
}

.awsp-v3365g-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.awsp-v3365g-orbit.orbit-one {
    width: 94px;
    height: 94px;
    right: 2px;
    top: 0;
}

.awsp-v3365g-orbit.orbit-two {
    width: 62px;
    height: 62px;
    left: 2px;
    bottom: 2px;
}

.awsp-v3365g-visual-caption {
    position: absolute;
    right: 48px;
    bottom: 7px;
    min-width: 245px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(11, 31, 51, .68);
    box-shadow:
        0 14px 30px rgba(4, 17, 30, .20);
}

.awsp-v3365g-visual-caption > span {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border: 2px solid #96cdcd;
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(150, 205, 205, .12);
}

.awsp-v3365g-visual-caption b,
.awsp-v3365g-visual-caption small {
    display: block;
}

.awsp-v3365g-visual-caption b {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
}

.awsp-v3365g-visual-caption small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    line-height: 1.7;
}

.awsp-v3365g-form-panel {
    grid-area: form;
    min-width: 0;
    display: grid;
    place-items: center;
    padding: clamp(34px, 5vw, 68px);
    background: var(--awsp-v3365g-surface);
}

.awsp-v3365g-form-inner {
    width: min(410px, 100%);
}

.awsp-v3365g-form-heading {
    margin-bottom: 29px;
}

.awsp-v3365g-badge {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(151, 89, 231, .09);
    color: #6f35bd;
    font-size: 12px;
    font-weight: 600;
}

.awsp-v3365g-form-heading h2 {
    margin: 18px 0 9px;
    color: var(--awsp-v3365g-text);
    font-size: clamp(26px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.55;
}

.awsp-v3365g-form-heading p {
    margin: 0;
    color: var(--awsp-v3365g-muted);
    font-size: 14px;
    line-height: 1.9;
}

.awsp-v3365g-stage {
    display: grid;
    gap: 17px;
}

.awsp-v3365g-field {
    display: grid;
    gap: 8px;
}

.awsp-v3365g-label {
    color: var(--awsp-v3365g-text);
    font-size: 14px;
    font-weight: 600;
}

.awsp-v3365g-field > small {
    color: var(--awsp-v3365g-muted);
    font-size: 13px;
    line-height: 1.75;
}

.awsp-v3365g-input-shell {
    position: relative;
    display: block;
}

.awsp-v3365g-input-shell input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid var(--awsp-v3365g-border-strong);
    border-radius: var(--awsp-v3365g-radius-control);
    outline: none;
    background: #ffffff;
    color: var(--awsp-v3365g-text);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    transition:
        border-color var(--awsp-v3365g-transition),
        box-shadow var(--awsp-v3365g-transition),
        background var(--awsp-v3365g-transition);
}

.awsp-v3365g-input-shell input::placeholder {
    color: #9aa7b7;
    opacity: 1;
}

.awsp-v3365g-input-shell input:hover {
    border-color: #b9c6d5;
}

.awsp-v3365g-input-shell input:focus-visible {
    border-color: var(--awsp-v3365g-purple);
    box-shadow: var(--awsp-v3365g-focus);
}

.awsp-v3365g-primary-button {
    width: 100%;
    min-height: 52px;
    padding: 10px 18px;
    border: 1px solid var(--awsp-v3365g-purple);
    border-radius: var(--awsp-v3365g-radius-control);
    background: var(--awsp-v3365g-purple);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background var(--awsp-v3365g-transition),
        border-color var(--awsp-v3365g-transition),
        transform var(--awsp-v3365g-transition),
        box-shadow var(--awsp-v3365g-transition);
}

.awsp-v3365g-primary-button:hover:not(:disabled) {
    border-color: var(--awsp-v3365g-purple-dark);
    background: var(--awsp-v3365g-purple-dark);
    box-shadow:
        0 10px 24px rgba(151, 89, 231, .20);
}

.awsp-v3365g-primary-button:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: none;
}

.awsp-v3365g-primary-button:focus-visible,
.awsp-v3365g-otp-actions button:focus-visible,
.awsp-v3365g-toolbar button:focus-visible {
    outline: none;
    box-shadow: var(--awsp-v3365g-focus);
}

.awsp-v3365g-primary-button:disabled {
    opacity: .58;
    cursor: wait;
}

.awsp-v3365g-otp-stage {
    padding-top: 3px;
}

.awsp-v3365g-otp-heading {
    margin-bottom: 2px;
}

.awsp-v3365g-otp-heading h3 {
    margin: 0;
    color: var(--awsp-v3365g-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}

.awsp-v3365g-otp-heading p {
    margin: 5px 0 0;
    color: var(--awsp-v3365g-muted);
    font-size: 13px;
    line-height: 1.8;
}

.awsp-v3365g-otp-input {
    text-align: center;
    letter-spacing: .36em;
    font-size: 20px !important;
}

.awsp-v3365g-otp-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.awsp-v3365g-otp-actions button {
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid var(--awsp-v3365g-border);
    border-radius: 11px;
    background: #f8fafc;
    color: var(--awsp-v3365g-text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.awsp-v3365g-otp-actions button:disabled {
    color: #8c99a8;
    cursor: default;
}

.awsp-v3365g-form-panel .awsp-message-v3365f {
    display: none;
    margin-top: 17px;
    padding: 11px 13px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.8;
}

.awsp-v3365g-form-panel .awsp-message-v3365f.good,
.awsp-v3365g-form-panel .awsp-message-v3365f.bad {
    display: block;
}

.awsp-v3365g-form-panel .awsp-message-v3365f.good {
    border-color: rgba(21, 122, 85, .16);
    background: var(--awsp-v3365g-success-bg);
    color: var(--awsp-v3365g-success);
}

.awsp-v3365g-form-panel .awsp-message-v3365f.bad {
    border-color: rgba(167, 41, 41, .16);
    background: var(--awsp-v3365g-error-bg);
    color: var(--awsp-v3365g-error);
}

.awsp-v3365g-trust {
    margin-top: 22px;
    padding-top: 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px solid var(--awsp-v3365g-border);
}

.awsp-v3365g-trust > span {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin-top: 7px;
    border: 2px solid var(--awsp-v3365g-success);
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(21, 122, 85, .08);
}

.awsp-v3365g-trust b,
.awsp-v3365g-trust small {
    display: block;
}

.awsp-v3365g-trust b {
    color: var(--awsp-v3365g-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.7;
}

.awsp-v3365g-trust small {
    margin-top: 2px;
    color: var(--awsp-v3365g-muted);
    font-size: 13px;
    line-height: 1.7;
}

.awsp-v3365g-panel-stage {
    width: min(1500px, 100%);
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    padding:
        max(18px, env(safe-area-inset-top))
        max(18px, env(safe-area-inset-right))
        max(18px, env(safe-area-inset-bottom))
        max(18px, env(safe-area-inset-left));
    background: var(--awsp-v3365g-page);
}

.awsp-v3365g-toolbar {
    margin: 0 0 18px;
    padding: 14px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--awsp-v3365g-border);
    border-radius: 17px;
    background: #ffffff;
    box-shadow:
        0 10px 30px rgba(23, 52, 84, .07);
}

.awsp-v3365g-toolbar > div {
    display: grid;
    gap: 4px;
}

.awsp-v3365g-toolbar b {
    color: var(--awsp-v3365g-text);
    font-size: 16px;
    font-weight: 700;
}

.awsp-v3365g-toolbar span {
    color: var(--awsp-v3365g-muted);
    font-size: 13px;
}

.awsp-v3365g-toolbar button {
    min-height: 40px;
    padding: 7px 14px;
    border: 1px solid #e3bcbc;
    border-radius: 11px;
    background: #fff7f7;
    color: #912d2d;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
}

@keyframes awsp-v3365g-shell-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1040px) {
    .awsp-v3365g-auth-stage {
        padding: 20px;
    }

    .awsp-v3365g-shell {
        width: min(860px, 100%);
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "form";
    }

    .awsp-v3365g-brand-panel {
        min-height: 330px;
        padding: 34px;
    }

    .awsp-v3365g-brand-copy {
        margin-top: 34px;
    }

    .awsp-v3365g-brand-copy h1 {
        margin-top: 16px;
        font-size: 31px;
    }

    .awsp-v3365g-visual {
        position: absolute;
        width: 320px;
        height: 160px;
        left: 20px;
        bottom: 15px;
        opacity: .72;
    }

    .awsp-v3365g-benefits {
        width: min(540px, calc(100% - 250px));
        margin-top: 25px;
    }

    .awsp-v3365g-form-panel {
        padding: 42px 34px 48px;
    }
}

@media (max-width: 720px) {
    .awsp-v3365g-auth-stage {
        display: block;
        min-height: 100dvh;
        padding:
            max(12px, env(safe-area-inset-top))
            max(12px, env(safe-area-inset-right))
            max(16px, env(safe-area-inset-bottom))
            max(12px, env(safe-area-inset-left));
    }

    .awsp-v3365g-shell {
        min-height: calc(
            100dvh -
            max(12px, env(safe-area-inset-top)) -
            max(16px, env(safe-area-inset-bottom))
        );
        border-radius: 22px;
    }

    .awsp-v3365g-brand-panel {
        min-height: auto;
        padding: 25px 22px 23px;
    }

    .awsp-v3365g-logo {
        width: min(150px, 46vw);
        height: 48px;
        flex-basis: auto;
        border-radius: 0;
    }

    .awsp-v3365g-brand-lockup strong {
        font-size: 17px;
    }

    .awsp-v3365g-brand-lockup span {
        font-size: 12px;
    }

    .awsp-v3365g-brand-copy {
        margin-top: 25px;
    }

    .awsp-v3365g-eyebrow {
        display: none;
    }

    .awsp-v3365g-brand-copy h1 {
        margin: 0;
        font-size: 25px;
        line-height: 1.55;
    }

    .awsp-v3365g-brand-copy p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.85;
    }

    .awsp-v3365g-benefits {
        width: 100%;
        margin-top: 17px;
        grid-template-columns: 1fr 1fr;
    }

    .awsp-v3365g-benefits li:nth-child(3) {
        display: none;
    }

    .awsp-v3365g-benefits li {
        padding: 10px;
    }

    .awsp-v3365g-benefits small {
        display: none;
    }

    .awsp-v3365g-visual {
        display: none;
    }

    .awsp-v3365g-visual-caption {
        display: none;
    }

    .awsp-v3365g-form-panel {
        align-items: start;
        padding:
            31px
            max(20px, env(safe-area-inset-right))
            38px
            max(20px, env(safe-area-inset-left));
    }

    .awsp-v3365g-form-inner {
        width: 100%;
    }

    .awsp-v3365g-form-heading {
        margin-bottom: 24px;
    }

    .awsp-v3365g-form-heading h2 {
        font-size: 24px;
    }
}

@media (max-width: 420px) {
    .awsp-v3365g-auth-stage {
        padding:
            max(8px, env(safe-area-inset-top))
            max(8px, env(safe-area-inset-right))
            max(12px, env(safe-area-inset-bottom))
            max(8px, env(safe-area-inset-left));
    }

    .awsp-v3365g-shell {
        border-radius: 18px;
    }

    .awsp-v3365g-brand-panel {
        padding: 21px 17px 19px;
    }

    .awsp-v3365g-brand-copy h1 {
        font-size: 23px;
    }

    .awsp-v3365g-brand-copy p {
        font-size: 13px;
    }

    .awsp-v3365g-benefits {
        grid-template-columns: 1fr;
    }

    .awsp-v3365g-benefits li:nth-child(2) {
        display: none;
    }

    .awsp-v3365g-form-panel {
        padding: 27px 17px 32px;
    }

    .awsp-v3365g-form-heading h2 {
        font-size: 22px;
    }

    .awsp-v3365g-otp-actions {
        grid-template-columns: 1fr;
    }

    .awsp-v3365g-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .awsp-v3365g-toolbar button {
        width: 100%;
    }
}

@media (max-height: 720px) and (min-width: 721px) {
    .awsp-v3365g-auth-stage {
        place-items: start center;
    }

    .awsp-v3365g-shell {
        min-height: 650px;
    }

    .awsp-v3365g-brand-copy {
        margin-top: 38px;
    }

    .awsp-v3365g-visual {
        height: 150px;
        margin-top: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ADATASK WEBINAR MOBILE INTERACTION V3365G — PHASE 5 */

.awsp-v3365g-stage {
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.awsp-v3365g-stage.awsp-v3365g-stage-enter {
    animation:
        awsp-v3365g-stage-enter
        220ms
        ease-out
        both;
}

.awsp-v3365g-input-shell input[aria-invalid="true"] {
    border-color: var(--awsp-v3365g-error);
    background: #fffafa;
    box-shadow:
        0 0 0 4px rgba(167, 41, 41, .09);
}

.awsp-v3365g-input-shell input.is-valid {
    border-color: rgba(21, 122, 85, .54);
    background: #fbfffd;
}

.awsp-v3365g-primary-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.awsp-v3365g-primary-button.is-loading::before {
    content: "";
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 2px solid rgba(255, 255, 255, .38);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation:
        awsp-v3365g-button-spin
        .75s
        linear
        infinite;
}

.awsp-v3365g-primary-button.is-success {
    border-color: var(--awsp-v3365g-success);
    background: var(--awsp-v3365g-success);
}

.awsp-v3365g-form-panel .awsp-message-v3365f.info {
    display: block;
    border-color: rgba(23, 52, 84, .10);
    background: #f3f7fb;
    color: var(--awsp-v3365g-text);
}

.awsp-v3365g-form-panel .awsp-message-v3365f.warning {
    display: block;
    border-color: rgba(166, 111, 17, .16);
    background: #fff9e9;
    color: #80540e;
}

.awsp-v3365g-otp-heading b {
    color: var(--awsp-v3365g-text);
    font-weight: 600;
    direction: ltr;
    unicode-bidi: isolate;
    white-space: nowrap;
}

.awsp-v3365g-body.is-offline .awsp-v3365g-primary-button {
    opacity: .62;
}

@keyframes awsp-v3365g-button-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes awsp-v3365g-stage-enter {
    from {
        opacity: 0;
        transform: translateY(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .awsp-v3365g-stage.awsp-v3365g-stage-enter {
        animation: none !important;
    }

    .awsp-v3365g-primary-button.is-loading::before {
        animation-duration: 1.5s !important;
    }
}

/* ADATASK WEBINAR OTP EXPERIENCE V3365G — PHASE 6 */

.awsp-v3365g-otp-meta {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--awsp-v3365g-muted);
    font-size: 12px;
    line-height: 1.8;
}

.awsp-v3365g-otp-expiry {
    min-width: 94px;
    color: var(--awsp-v3365g-success);
    font-weight: 600;
    direction: rtl;
    unicode-bidi: isolate;
}

.awsp-v3365g-otp-expiry.is-warning {
    color: #93600c;
}

.awsp-v3365g-otp-expiry.is-expired {
    color: var(--awsp-v3365g-error);
}

.awsp-v3365g-primary-button.is-expired {
    border-color: #c8d0da;
    background: #e7ebf0;
    color: #7b8796;
    box-shadow: none;
    cursor: not-allowed;
}

.awsp-v3365g-otp-input.is-expired {
    border-color: rgba(167, 41, 41, .45);
    background: #fffafa;
}

@media (max-width: 420px) {
    .awsp-v3365g-otp-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }
}

/* ADATASK_WEBINAR_PANEL_POLISH_V3365H */

body.awsp-v3365g-body {
    background: #f3f6fa;
}

.awsp-v3365g-page {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.awsp-v3365g-page::before {
    content: "";
    position: fixed;
    z-index: -2;
    inset: 0;
    pointer-events: none;
    opacity: .48;
    background-image:
        linear-gradient(
            rgba(23, 52, 84, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23, 52, 84, .035) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .72),
            transparent 82%
        );
}

.awsp-v3365g-page::after {
    content: "";
    position: fixed;
    z-index: -1;
    width: 520px;
    height: 520px;
    inset-block-start: -230px;
    inset-inline-end: -180px;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(151, 89, 231, .14) 0,
            rgba(150, 205, 205, .075) 38%,
            transparent 70%
        );
    filter: blur(3px);
    animation:
        awsp-v3365h-ambient 14s ease-in-out infinite alternate;
}

.awsp-v3365g-shell {
    border:
        1px solid rgba(23, 52, 84, .09);
    box-shadow:
        0 32px 74px rgba(23, 52, 84, .14),
        0 3px 12px rgba(23, 52, 84, .045);
    backdrop-filter: blur(10px);
}

.awsp-v3365g-brand-panel {
    box-shadow:
        inset -1px 0 rgba(255, 255, 255, .09);
}

.awsp-v3365g-brand-panel::before {
    animation:
        awsp-v3365h-brand-glow
        12s ease-in-out infinite alternate;
}

.awsp-v3365g-brand-panel::after {
    animation:
        awsp-v3365h-brand-glow
        16s ease-in-out infinite alternate-reverse;
}

.awsp-v3365g-brand-copy h1,
.awsp-v3365g-form-heading h1 {
    text-wrap: balance;
    letter-spacing: -.65px;
}

.awsp-v3365g-brand-copy h1 {
    line-height: 1.48;
}

.awsp-v3365g-brand-copy p,
.awsp-v3365g-form-heading p {
    text-wrap: pretty;
}

.awsp-v3365g-form-heading h1 {
    font-size: clamp(25px, 2.4vw, 31px);
    line-height: 1.55;
}

.awsp-v3365g-form-inner {
    position: relative;
}

.awsp-v3365g-video-window {
    transform-origin: center bottom;
    animation:
        awsp-v3365h-window-float
        6.8s ease-in-out infinite;
}

.awsp-v3365g-orbit.orbit-one {
    animation:
        awsp-v3365h-orbit-one
        7.5s ease-in-out infinite;
}

.awsp-v3365g-orbit.orbit-two {
    animation:
        awsp-v3365h-orbit-two
        9.5s ease-in-out infinite reverse;
}

.awsp-v3365g-input-shell {
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.awsp-v3365g-input-shell:focus-within {
    transform: translateY(-1px);
}

.awsp-v3365g-primary-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.awsp-v3365g-primary-button::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset-block: 0;
    inset-inline-start: -80%;
    width: 48%;
    pointer-events: none;
    transform: skewX(-22deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .24),
            transparent
        );
    transition: inset-inline-start .7s ease;
}

.awsp-v3365g-primary-button:hover::after {
    inset-inline-start: 135%;
}

.awsp-v3365g-trust {
    border-top-color:
        rgba(23, 52, 84, .085);
}

@keyframes awsp-v3365h-ambient {
    from {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    to {
        transform:
            translate3d(-42px, 34px, 0)
            scale(1.08);
    }
}

@keyframes awsp-v3365h-brand-glow {
    from {
        transform:
            translate3d(0, 0, 0)
            scale(1);
        opacity: .72;
    }

    to {
        transform:
            translate3d(18px, -12px, 0)
            scale(1.1);
        opacity: 1;
    }
}

@keyframes awsp-v3365h-window-float {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(0deg);
    }

    50% {
        transform:
            translate3d(0, -7px, 0)
            rotate(.25deg);
    }
}

@keyframes awsp-v3365h-orbit-one {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(7px, -9px, 0)
            scale(1.06);
    }
}

@keyframes awsp-v3365h-orbit-two {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(-8px, 7px, 0)
            scale(.95);
    }
}

@media (max-width: 760px) {
    .awsp-v3365g-page::before {
        background-size: 30px 30px;
        opacity: .33;
    }

    .awsp-v3365g-page::after {
        width: 340px;
        height: 340px;
        inset-block-start: -180px;
        inset-inline-end: -150px;
    }

    .awsp-v3365g-shell {
        box-shadow:
            0 20px 44px rgba(23, 52, 84, .11);
    }

    .awsp-v3365g-form-heading h1 {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .awsp-v3365g-page::after,
    .awsp-v3365g-brand-panel::before,
    .awsp-v3365g-brand-panel::after,
    .awsp-v3365g-video-window,
    .awsp-v3365g-orbit {
        animation: none !important;
    }

    .awsp-v3365g-primary-button::after {
        display: none !important;
    }

    .awsp-v3365g-input-shell {
        transition: none !important;
    }
}

/* /ADATASK_WEBINAR_PANEL_POLISH_V3365H */

/* =========================================================
   ADATASK WEBINAR STANDALONE PANEL V3365I-R1
   Actual V3365G selectors
   ========================================================= */

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body.awsp-v3365g-body.awsp-v3365i-ui {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding:
        max(28px, env(safe-area-inset-top))
        max(26px, env(safe-area-inset-right))
        max(28px, env(safe-area-inset-bottom))
        max(26px, env(safe-area-inset-left));
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 6% 10%,
            rgba(151, 89, 231, 0.12),
            transparent 28rem
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(150, 205, 205, 0.15),
            transparent 30rem
        ),
        linear-gradient(
            135deg,
            #f8f9fc 0%,
            #f1f6fa 52%,
            #f9fbfd 100%
        );
    font-family:
        "Vazirmatn",
        "Vazir",
        Tahoma,
        Arial,
        sans-serif;
}

.awsp-v3365i-ui *,
.awsp-v3365i-ui *::before,
.awsp-v3365i-ui *::after {
    box-sizing: border-box;
}

.awsp-v3365i-ui .awsp-v3365g-page {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.awsp-v3365i-ui .awsp-v3365g-auth-stage {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.awsp-v3365i-ui .awsp-v3365g-shell {
    width: min(
        1210px,
        calc(100vw - 56px)
    );
    max-width: 100%;
    min-width: 0;
    min-height: min(
        760px,
        calc(100dvh - 70px)
    );
    margin-inline: auto;
    overflow: hidden;
    border:
        1px solid
        rgba(23, 52, 84, 0.08);
    border-radius: 27px;
    box-shadow:
        0 30px 86px
        rgba(23, 52, 84, 0.14),
        0 5px 20px
        rgba(23, 52, 84, 0.05);
    animation:
        awspV3365iShellReveal
        480ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.awsp-v3365i-ui .awsp-v3365g-shell > * {
    min-width: 0;
    max-width: 100%;
}

.awsp-v3365i-ui .awsp-v3365g-brand-panel {
    animation:
        awspV3365iBrandReveal
        520ms
        100ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.awsp-v3365i-ui
.awsp-v3365g-shell
> :not(.awsp-v3365g-brand-panel) {
    animation:
        awspV3365iFormReveal
        520ms
        150ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.awsp-v3365i-ui .awsp-v3365g-brand-content {
    min-width: 0;
    max-width: 100%;
}

.awsp-v3365i-ui .awsp-v3365g-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation:
        awspV3365iLogoReveal
        520ms
        190ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.awsp-v3365i-ui h1,
.awsp-v3365i-ui h2,
.awsp-v3365i-ui h3 {
    text-wrap: balance;
    letter-spacing: -0.02em;
}

.awsp-v3365i-ui h1 {
    font-weight: 700;
}

.awsp-v3365i-ui p {
    text-wrap: pretty;
}

.awsp-v3365i-ui
#awsp-auth-v3365f
input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 1rem;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.awsp-v3365i-ui
#awsp-auth-v3365f
input:focus {
    border-color: #9759e7;
    box-shadow:
        0 0 0 4px
        rgba(151, 89, 231, 0.13);
    transform: translateY(-1px);
}

.awsp-v3365i-ui
#awsp-auth-v3365f
button {
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    font-weight: 700;
    transition:
        transform 160ms ease,
        box-shadow 180ms ease,
        filter 180ms ease,
        opacity 180ms ease;
}

.awsp-v3365i-ui
#awsp-auth-v3365f
button:not(:disabled):active {
    transform: scale(0.992);
}

.awsp-v3365i-ui
#awsp-auth-v3365f
input:focus-visible,
.awsp-v3365i-ui
#awsp-auth-v3365f
button:focus-visible,
.awsp-v3365i-back:focus-visible {
    outline:
        3px solid
        rgba(150, 205, 205, 0.78);
    outline-offset: 3px;
}

.awsp-v3365i-back {
    position: fixed;
    z-index: 100;
    top:
        max(
            18px,
            env(safe-area-inset-top)
        );
    left:
        max(
            18px,
            env(safe-area-inset-left)
        );
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    max-width: calc(100vw - 36px);
    padding: 9px 15px;
    color: #173454;
    background:
        rgba(255, 255, 255, 0.92);
    border:
        1px solid
        rgba(23, 52, 84, 0.12);
    border-radius: 13px;
    box-shadow:
        0 9px 28px
        rgba(23, 52, 84, 0.10);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
    animation:
        awspV3365iBackReveal
        430ms
        210ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.awsp-v3365i-back svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

@media (hover: hover) {
    .awsp-v3365i-ui
    #awsp-auth-v3365f
    button:not(:disabled):hover {
        transform: translateY(-2px);
        box-shadow:
            0 14px 30px
            rgba(151, 89, 231, 0.24);
        filter: saturate(1.04);
    }

    .awsp-v3365i-back:hover {
        transform: translateY(-2px);
        color: #173454;
        background: #ffffff;
        border-color:
            rgba(151, 89, 231, 0.36);
        box-shadow:
            0 14px 34px
            rgba(23, 52, 84, 0.14);
    }
}

@keyframes awspV3365iShellReveal {
    from {
        opacity: 0;
        transform:
            translateY(15px)
            scale(0.992);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

@keyframes awspV3365iBrandReveal {
    from {
        opacity: 0;
        transform: translateX(13px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes awspV3365iFormReveal {
    from {
        opacity: 0;
        transform: translateX(-13px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes awspV3365iLogoReveal {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes awspV3365iBackReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    body.awsp-v3365g-body.awsp-v3365i-ui {
        padding-inline:
            max(
                18px,
                env(safe-area-inset-left)
            );
    }

    .awsp-v3365i-ui .awsp-v3365g-shell {
        width: 100%;
    }
}

@media (max-width: 920px) {
    body.awsp-v3365g-body.awsp-v3365i-ui {
        padding:
            max(
                15px,
                env(safe-area-inset-top)
            )
            max(
                15px,
                env(safe-area-inset-right)
            )
            max(
                22px,
                env(safe-area-inset-bottom)
            )
            max(
                15px,
                env(safe-area-inset-left)
            );
    }

    .awsp-v3365i-back {
        position: static;
        align-self: flex-start;
        margin:
            0
            0
            14px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .awsp-v3365i-ui .awsp-v3365g-page {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .awsp-v3365i-ui .awsp-v3365g-shell {
        display: grid !important;
        grid-template-columns:
            minmax(0, 1fr) !important;
        width: 100% !important;
        min-height: auto !important;
        border-radius: 22px;
    }

    .awsp-v3365i-ui
    .awsp-v3365g-shell
    > :not(.awsp-v3365g-brand-panel) {
        order: 1;
        width: 100%;
        min-height: auto !important;
    }

    .awsp-v3365i-ui
    .awsp-v3365g-brand-panel {
        order: 2;
        width: 100%;
        min-height: auto !important;
        padding:
            28px
            24px !important;
    }

    .awsp-v3365i-ui
    .awsp-v3365g-brand-content {
        width: 100%;
        max-width: 680px;
        margin-inline: auto;
    }

    .awsp-v3365i-ui
    .awsp-v3365g-brand-panel
    [class*="illustration"],
    .awsp-v3365i-ui
    .awsp-v3365g-brand-panel
    [class*="mockup"],
    .awsp-v3365i-ui
    .awsp-v3365g-brand-panel
    [class*="visual"] {
        max-height: 190px;
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    body.awsp-v3365g-body.awsp-v3365i-ui {
        padding:
            max(
                11px,
                env(safe-area-inset-top)
            )
            max(
                11px,
                env(safe-area-inset-right)
            )
            max(
                18px,
                env(safe-area-inset-bottom)
            )
            max(
                11px,
                env(safe-area-inset-left)
            );
    }

    .awsp-v3365i-back {
        min-height: 42px;
        max-width: 100%;
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 0.8rem;
        white-space: normal;
    }

    .awsp-v3365i-ui .awsp-v3365g-shell {
        border-radius: 18px;
        box-shadow:
            0 18px 50px
            rgba(23, 52, 84, 0.12);
    }

    .awsp-v3365i-ui
    .awsp-v3365g-shell
    > :not(.awsp-v3365g-brand-panel) {
        padding-inline: 17px !important;
    }

    .awsp-v3365i-ui
    .awsp-v3365g-brand-panel {
        padding:
            23px
            18px !important;
    }

    .awsp-v3365i-ui h1 {
        font-size: clamp(
            1.45rem,
            7vw,
            1.78rem
        ) !important;
        line-height: 1.55 !important;
    }

    .awsp-v3365i-ui p {
        font-size: 0.9rem;
        line-height: 1.9;
    }

    .awsp-v3365i-ui
    #awsp-auth-v3365f
    input,
    .awsp-v3365i-ui
    #awsp-auth-v3365f
    button {
        min-height: 52px;
        font-size: 1rem;
    }

    .awsp-v3365i-ui
    .awsp-v3365g-brand-panel
    [class*="illustration"],
    .awsp-v3365i-ui
    .awsp-v3365g-brand-panel
    [class*="mockup"],
    .awsp-v3365i-ui
    .awsp-v3365g-brand-panel
    [class*="visual"] {
        max-height: 125px;
    }
}

@media (max-width: 360px) {
    body.awsp-v3365g-body.awsp-v3365i-ui {
        padding-inline:
            max(
                9px,
                env(safe-area-inset-left)
            );
    }

    .awsp-v3365i-ui .awsp-v3365g-shell {
        border-radius: 15px;
    }

    .awsp-v3365i-ui
    .awsp-v3365g-shell
    > :not(.awsp-v3365g-brand-panel),
    .awsp-v3365i-ui
    .awsp-v3365g-brand-panel {
        padding-inline: 14px !important;
    }
}

@media (
    min-width: 921px
) and (
    max-height: 760px
) {
    body.awsp-v3365g-body.awsp-v3365i-ui {
        padding-block: 20px;
    }

    .awsp-v3365i-ui .awsp-v3365g-shell {
        min-height: 680px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .awsp-v3365i-ui *,
    .awsp-v3365i-ui *::before,
    .awsp-v3365i-ui *::after,
    .awsp-v3365i-back {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

/* /ADATASK WEBINAR STANDALONE PANEL V3365I-R1 */

/* =========================================================
   ADATASK WEBINAR V3365J
   Premium Minimal Standalone Webinar Portal
   ========================================================= */

body.awsp-v3365g-body.awsp-v3365j-ui {
    --awsp-navy: #152f4d;
    --awsp-deep: #17163f;
    --awsp-purple: #9759e7;
    --awsp-purple-soft: #b58af0;
    --awsp-cyan: #96cdcd;
    --awsp-white: #ffffff;
    --awsp-text: #173454;
    --awsp-muted: #728198;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 100vh;
    min-height: 100dvh;

    padding:
        max(24px, env(safe-area-inset-top))
        max(24px, env(safe-area-inset-right))
        max(24px, env(safe-area-inset-bottom))
        max(24px, env(safe-area-inset-left));

    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 8% 9%,
            rgba(151, 89, 231, 0.11),
            transparent 26rem
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(150, 205, 205, 0.12),
            transparent 30rem
        ),
        linear-gradient(
            135deg,
            #fbfbfe 0%,
            #f4f6fb 48%,
            #f8fbfd 100%
        );
}

.awsp-v3365j-ui .awsp-v3365g-page,
.awsp-v3365j-ui .awsp-v3365g-auth-stage {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.awsp-v3365j-ui .awsp-v3365g-shell {
    display: grid;
    grid-template-columns:
        minmax(0, 0.98fr)
        minmax(0, 1.08fr);

    width: min(
        1110px,
        calc(100vw - 54px)
    );

    max-width: 100%;
    min-width: 0;
    min-height: 660px;
    margin-inline: auto;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        rgba(23, 52, 84, 0.08);

    border-radius: 25px;

    box-shadow:
        0 28px 78px
        rgba(23, 52, 84, 0.13),
        0 4px 15px
        rgba(23, 52, 84, 0.04);

    animation:
        awspV3365jShellEnter
        620ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.awsp-v3365j-ui
.awsp-v3365g-shell
> * {
    min-width: 0;
    max-width: 100%;
}

.awsp-v3365j-ui
.awsp-v3365g-shell
> :not(.awsp-v3365g-brand-panel) {
    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        clamp(34px, 5vw, 64px)
        clamp(28px, 4.5vw, 58px);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fefeff 100%
        );

    animation:
        awspV3365jFormEnter
        620ms
        100ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.awsp-v3365j-ui
#awsp-auth-v3365f {
    width: 100%;
    max-width: 430px;
    margin-inline: auto;
}

.awsp-v3365j-ui
#awsp-login-title-v3365g {
    margin:
        18px
        0
        12px;

    color: var(--awsp-text);

    font-size:
        clamp(
            1.65rem,
            2.3vw,
            2.05rem
        );

    font-weight: 700;
    line-height: 1.52;
    letter-spacing: -0.025em;
}

.awsp-v3365j-ui
#awsp-auth-v3365f p {
    color: var(--awsp-muted);
    font-size: 0.91rem;
    line-height: 1.95;
}

.awsp-v3365j-ui
#awsp-auth-v3365f label {
    color: var(--awsp-text);
    font-size: 0.88rem;
    font-weight: 650;
}

.awsp-v3365j-ui
#awsp-auth-v3365f input {
    width: 100%;
    min-width: 0;
    min-height: 50px;

    padding-inline: 16px;

    color: var(--awsp-text);
    background: #ffffff;

    border:
        1px solid
        rgba(23, 52, 84, 0.16);

    border-radius: 12px;

    box-shadow:
        0 2px 7px
        rgba(23, 52, 84, 0.025);

    font-size: 0.98rem;

    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease,
        background-color 180ms ease;
}

.awsp-v3365j-ui
#awsp-auth-v3365f input:focus {
    border-color:
        rgba(151, 89, 231, 0.75);

    background: #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(151, 89, 231, 0.11);

    transform: translateY(-1px);
}

.awsp-v3365j-ui
#awsp-auth-v3365f button {
    min-height: 50px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #8d4ce5 0%,
            #a260ed 100%
        );

    box-shadow:
        0 11px 24px
        rgba(151, 89, 231, 0.22);

    font-size: 0.94rem;
    font-weight: 700;

    transition:
        transform 170ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

@media (hover: hover) {
    .awsp-v3365j-ui
    #awsp-auth-v3365f
    button:not(:disabled):hover {
        transform: translateY(-2px);

        box-shadow:
            0 16px 30px
            rgba(151, 89, 231, 0.28);

        filter: saturate(1.05);
    }
}

.awsp-v3365j-ui
#awsp-auth-v3365f
button:not(:disabled):active {
    transform:
        translateY(0)
        scale(0.992);
}

.awsp-v3365j-ui
.awsp-v3365g-brand-panel {
    position: relative;
    isolation: isolate;

    display: flex;
    min-width: 0;
    overflow: hidden;

    padding:
        36px
        42px
        34px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 21% 14%,
            rgba(151, 89, 231, 0.35),
            transparent 19rem
        ),
        radial-gradient(
            circle at 87% 83%,
            rgba(91, 87, 185, 0.23),
            transparent 23rem
        ),
        linear-gradient(
            145deg,
            #17163f 0%,
            #1b2456 52%,
            #28205d 100%
        );

    animation:
        awspV3365jBrandEnter
        680ms
        130ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.awsp-v3365j-ui
.awsp-v3365g-brand-panel::before {
    content: "";

    position: absolute;
    z-index: -2;
    inset: auto -15% -17% 20%;

    height: 250px;

    opacity: 0.65;

    background:
        repeating-radial-gradient(
            ellipse at center,
            transparent 0 17px,
            rgba(181, 138, 240, 0.12) 18px 19px,
            transparent 20px 34px
        );

    transform: rotate(-7deg);
}

.awsp-v3365j-ui
.awsp-v3365g-brand-panel::after {
    content: "";

    position: absolute;
    z-index: -1;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            125deg,
            transparent 0%,
            rgba(255, 255, 255, 0.025) 42%,
            transparent 70%
        );

    animation:
        awspV3365jPanelGlow
        9s
        ease-in-out
        infinite alternate;
}

.awsp-v3365j-ui
.awsp-v3365g-brand-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.awsp-v3365j-ui
.awsp-v3365g-brand-lockup {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    width: 100%;
    margin-bottom: 48px;

    direction: rtl;
}

.awsp-v3365j-ui
.awsp-v3365g-logo {
    flex: 0 0 auto;

    width: 68px !important;
    max-width: 68px !important;
    height: auto !important;
    max-height: 68px !important;

    padding: 0 !important;
    margin: 0 !important;

    object-fit: contain;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    animation:
        awspV3365jLogoEnter
        520ms
        240ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.awsp-v3365j-ui
.awsp-v3365g-brand-lockup strong {
    display: block;

    color: #ffffff;

    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.4;
}

.awsp-v3365j-ui
.awsp-v3365g-brand-lockup span {
    display: block;

    margin-top: 3px;

    color:
        rgba(255, 255, 255, 0.67);

    font-size: 0.74rem;
    line-height: 1.6;
}

.awsp-v3365j-ui
.awsp-v3365g-brand-panel h1,
.awsp-v3365j-ui
.awsp-v3365g-brand-panel h2 {
    max-width: 17ch;
    margin-inline: auto;

    color: #ffffff;

    font-size:
        clamp(
            2rem,
            3vw,
            2.55rem
        );

    font-weight: 700;
    line-height: 1.42;
    letter-spacing: -0.035em;
    text-align: center;
    text-wrap: balance;
}

.awsp-v3365j-ui
.awsp-v3365g-brand-panel p {
    max-width: 44rem;
    margin-inline: auto;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.92rem;
    line-height: 2;
    text-align: center;
}

.awsp-v3365j-ui
.awsp-v3365g-brand-panel
:is(
    article,
    [class*="feature"],
    [class*="benefit"],
    [class*="trust"]
) {
    border-color:
        rgba(255, 255, 255, 0.13) !important;

    background:
        rgba(255, 255, 255, 0.055) !important;

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

@media (hover: hover) {
    .awsp-v3365j-ui
    .awsp-v3365g-brand-panel
    :is(
        article,
        [class*="feature"],
        [class*="benefit"],
        [class*="trust"]
    ):hover {
        transform: translateY(-3px);

        border-color:
            rgba(181, 138, 240, 0.36) !important;

        background:
            rgba(255, 255, 255, 0.075) !important;
    }
}

.awsp-v3365j-ui
.awsp-v3365g-brand-panel
:is(
    [class*="visual"],
    [class*="illustration"],
    [class*="mockup"]
) {
    position: relative;
    z-index: 2;

    max-width: 82%;
    max-height: 250px;
    margin:
        auto
        auto
        0;

    transform-origin: center bottom;

    filter:
        drop-shadow(
            0 18px 34px
            rgba(0, 0, 0, 0.19)
        );

    animation:
        awspV3365jWebinarFloat
        5.8s
        ease-in-out
        infinite;
}

.awsp-v3365j-motion-layer {
    position: absolute;
    z-index: 1;
    inset: 0;

    overflow: hidden;
    pointer-events: none;
}

.awsp-v3365j-orbit {
    position: absolute;

    width: 310px;
    height: 310px;

    border:
        1px solid
        rgba(181, 138, 240, 0.13);

    border-radius: 50%;
}

.awsp-v3365j-orbit::before,
.awsp-v3365j-orbit::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    background:
        radial-gradient(
            circle,
            #b58af0 0%,
            #9759e7 45%,
            transparent 72%
        );

    border-radius: 50%;

    box-shadow:
        0 0 18px
        rgba(151, 89, 231, 0.72);
}

.awsp-v3365j-orbit::before {
    top: 36px;
    right: 45px;
}

.awsp-v3365j-orbit::after {
    right: 10px;
    bottom: 83px;
}

.awsp-v3365j-orbit-a {
    top: 16%;
    left: -62px;

    animation:
        awspV3365jOrbitRotate
        24s
        linear
        infinite;
}

.awsp-v3365j-orbit-b {
    right: -105px;
    bottom: -72px;

    width: 370px;
    height: 370px;

    opacity: 0.65;

    animation:
        awspV3365jOrbitRotateReverse
        31s
        linear
        infinite;
}

.awsp-v3365j-particle {
    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #b58af0 0%,
            rgba(151, 89, 231, 0.85) 45%,
            transparent 75%
        );

    box-shadow:
        0 0 18px
        rgba(151, 89, 231, 0.66);

    animation:
        awspV3365jParticleFloat
        5.5s
        ease-in-out
        infinite;
}

.awsp-v3365j-particle-1 {
    top: 14%;
    left: 15%;
}

.awsp-v3365j-particle-2 {
    top: 27%;
    right: 12%;

    width: 4px;
    height: 4px;

    animation-delay: -1.3s;
}

.awsp-v3365j-particle-3 {
    top: 52%;
    left: 9%;

    width: 5px;
    height: 5px;

    animation-delay: -2.7s;
}

.awsp-v3365j-particle-4 {
    right: 22%;
    bottom: 18%;

    width: 7px;
    height: 7px;

    animation-delay: -3.5s;
}

.awsp-v3365j-particle-5 {
    right: 41%;
    bottom: 8%;

    width: 4px;
    height: 4px;

    animation-delay: -0.8s;
}

.awsp-v3365j-signal {
    position: absolute;
    right: 8%;
    bottom: 11%;

    display: grid;
    place-items: center;

    width: 54px;
    height: 54px;

    border:
        1px solid
        rgba(181, 138, 240, 0.48);

    border-radius: 50%;

    background:
        rgba(151, 89, 231, 0.12);

    box-shadow:
        0 0 0 9px
        rgba(151, 89, 231, 0.035);

    animation:
        awspV3365jSignalPulse
        2.8s
        ease-in-out
        infinite;
}

.awsp-v3365j-signal i {
    position: absolute;

    width: 10px;
    height: 10px;

    border:
        2px solid
        rgba(255, 255, 255, 0.8);

    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
}

.awsp-v3365j-signal i:nth-child(2) {
    width: 20px;
    height: 20px;

    opacity: 0.68;
}

.awsp-v3365j-signal i:nth-child(3) {
    width: 31px;
    height: 31px;

    opacity: 0.38;
}

.awsp-v3365j-wave {
    position: absolute;
    right: -7%;
    bottom: -2%;

    width: 68%;
    height: 130px;

    opacity: 0.45;

    background:
        repeating-radial-gradient(
            ellipse at center bottom,
            transparent 0 13px,
            rgba(181, 138, 240, 0.15) 14px 15px,
            transparent 16px 27px
        );

    transform:
        rotate(-5deg)
        scaleX(1.35);

    animation:
        awspV3365jWaveDrift
        9s
        ease-in-out
        infinite alternate;
}

.awsp-v3365j-ui
.awsp-v3365i-back {
    top:
        max(
            16px,
            env(safe-area-inset-top)
        );

    left:
        max(
            16px,
            env(safe-area-inset-left)
        );

    min-height: 40px;
    padding: 7px 12px;

    border-radius: 11px;

    font-size: 0.79rem;
    font-weight: 600;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 7px 20px
        rgba(23, 52, 84, 0.075);
}

@keyframes awspV3365jShellEnter {
    from {
        opacity: 0;

        transform:
            translateY(17px)
            scale(0.992);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

@keyframes awspV3365jFormEnter {
    from {
        opacity: 0;
        transform: translateX(-13px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes awspV3365jBrandEnter {
    from {
        opacity: 0;
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes awspV3365jLogoEnter {
    from {
        opacity: 0;
        transform: scale(0.82);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes awspV3365jPanelGlow {
    from {
        opacity: 0.4;
        transform: translateX(-3%);
    }

    to {
        opacity: 0.75;
        transform: translateX(3%);
    }
}

@keyframes awspV3365jOrbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes awspV3365jOrbitRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes awspV3365jParticleFloat {
    0%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-13px);
    }
}

@keyframes awspV3365jWebinarFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes awspV3365jSignalPulse {
    0%,
    100% {
        opacity: 0.62;
        transform: scale(0.96);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes awspV3365jWaveDrift {
    from {
        transform:
            translateX(-7px)
            rotate(-5deg)
            scaleX(1.35);
    }

    to {
        transform:
            translateX(12px)
            rotate(-3deg)
            scaleX(1.4);
    }
}

@media (max-width: 960px) {
    body.awsp-v3365g-body.awsp-v3365j-ui {
        justify-content: flex-start;

        padding:
            max(14px, env(safe-area-inset-top))
            max(14px, env(safe-area-inset-right))
            max(22px, env(safe-area-inset-bottom))
            max(14px, env(safe-area-inset-left));
    }

    .awsp-v3365j-ui
    .awsp-v3365i-back {
        position: static;
        align-self: flex-start;

        margin-bottom: 13px;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-page {
        display: flex;
        flex-direction: column;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-shell {
        grid-template-columns:
            minmax(0, 1fr);

        width: 100%;
        min-height: auto;

        border-radius: 21px;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-shell
    > :not(.awsp-v3365g-brand-panel) {
        order: 1;

        min-height: auto;

        padding:
            36px
            27px
            40px;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-brand-panel {
        order: 2;

        min-height: 480px;

        padding:
            30px
            26px;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-brand-lockup {
        margin-bottom: 32px;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-brand-panel h1,
    .awsp-v3365j-ui
    .awsp-v3365g-brand-panel h2 {
        font-size:
            clamp(
                1.7rem,
                5.8vw,
                2.15rem
            );
    }
}

@media (max-width: 640px) {
    body.awsp-v3365g-body.awsp-v3365j-ui {
        padding:
            max(10px, env(safe-area-inset-top))
            max(10px, env(safe-area-inset-right))
            max(18px, env(safe-area-inset-bottom))
            max(10px, env(safe-area-inset-left));
    }

    .awsp-v3365j-ui
    .awsp-v3365g-shell {
        border-radius: 17px;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-shell
    > :not(.awsp-v3365g-brand-panel) {
        padding:
            29px
            17px
            33px;
    }

    .awsp-v3365j-ui
    #awsp-auth-v3365f {
        max-width: 100%;
    }

    .awsp-v3365j-ui
    #awsp-login-title-v3365g {
        font-size:
            clamp(
                1.48rem,
                7vw,
                1.72rem
            );
    }

    .awsp-v3365j-ui
    .awsp-v3365g-brand-panel {
        min-height: 420px;

        padding:
            24px
            18px;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-brand-lockup {
        gap: 9px;
        margin-bottom: 25px;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-logo {
        width: 52px !important;
        max-width: 52px !important;
        max-height: 52px !important;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-brand-lockup strong {
        font-size: 0.93rem;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-brand-panel h1,
    .awsp-v3365j-ui
    .awsp-v3365g-brand-panel h2 {
        max-width: 20ch;

        font-size:
            clamp(
                1.52rem,
                7vw,
                1.85rem
            );
    }

    .awsp-v3365j-ui
    .awsp-v3365g-brand-panel p {
        font-size: 0.86rem;
    }

    .awsp-v3365j-orbit {
        width: 230px;
        height: 230px;
    }

    .awsp-v3365j-signal {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 360px) {
    .awsp-v3365j-ui
    .awsp-v3365g-shell
    > :not(.awsp-v3365g-brand-panel) {
        padding-inline: 14px;
    }

    .awsp-v3365j-ui
    .awsp-v3365g-brand-panel {
        padding-inline: 15px;
    }

    .awsp-v3365j-ui
    .awsp-v3365i-back {
        max-width: 100%;

        font-size: 0.75rem;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .awsp-v3365j-ui *,
    .awsp-v3365j-ui *::before,
    .awsp-v3365j-ui *::after {
        scroll-behavior: auto !important;

        animation-duration: 1ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 1ms !important;
    }
}

/* /ADATASK WEBINAR V3365J */

/* =========================================================
   ADATASK WEBINAR V3365K
   Centered Full-Width Shell Correction
   ========================================================= */

body.awsp-v3365g-body.awsp-v3365k-ui {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;

    width: 100% !important;
    max-width: none !important;
    min-height: 100vh;
    min-height: 100dvh;

    margin: 0 !important;
}

.awsp-v3365k-ui .awsp-v3365g-page {
    display: flex !important;
    flex: 1 1 auto !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: calc(100dvh - 48px);

    margin: 0 !important;
    padding: 0 !important;
}

.awsp-v3365k-ui .awsp-v3365g-auth-stage {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

.awsp-v3365k-ui .awsp-v3365g-shell {
    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1.08fr) !important;

    width:
        min(
            1240px,
            calc(100vw - 120px)
        ) !important;

    max-width: 1240px !important;
    min-width: 0 !important;

    margin-inline: auto !important;
    margin-block: 0 !important;

    transform-origin: center center;
}

.awsp-v3365k-ui
.awsp-v3365g-shell
> :not(.awsp-v3365g-brand-panel),
.awsp-v3365k-ui
.awsp-v3365g-brand-panel {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

.awsp-v3365k-ui
.awsp-v3365g-brand-panel {
    justify-self: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 1500px) {
    .awsp-v3365k-ui .awsp-v3365g-shell {
        width:
            min(
                1240px,
                calc(100vw - 160px)
            ) !important;
    }
}

@media (max-width: 1200px) {
    .awsp-v3365k-ui .awsp-v3365g-shell {
        width:
            calc(100vw - 56px) !important;

        max-width: 1120px !important;
    }
}

@media (max-width: 960px) {
    body.awsp-v3365g-body.awsp-v3365k-ui {
        justify-content: flex-start !important;
    }

    .awsp-v3365k-ui .awsp-v3365g-page {
        align-items: stretch !important;
        justify-content: flex-start !important;

        min-height: auto !important;
    }

    .awsp-v3365k-ui .awsp-v3365g-auth-stage {
        align-items: stretch !important;
    }

    .awsp-v3365k-ui .awsp-v3365g-shell {
        grid-template-columns:
            minmax(0, 1fr) !important;

        width: 100% !important;
        max-width: 100% !important;

        margin-inline: 0 !important;
    }
}

@media (max-width: 640px) {
    .awsp-v3365k-ui .awsp-v3365g-page,
    .awsp-v3365k-ui .awsp-v3365g-auth-stage,
    .awsp-v3365k-ui .awsp-v3365g-shell {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* /ADATASK WEBINAR V3365K */
