/* id.unlias.com — guest landing (mockup) */

.id-welcome-page {
    margin: 0;
    min-height: 100vh;
    background: #050508;
    color: #f4f4f8;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
}

.id-welcome-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.id-welcome-bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: id-welcome-orb-drift 18s ease-in-out infinite;
}

.id-welcome-bg__orb--violet {
    width: 520px;
    height: 520px;
    top: -120px;
    left: 50%;
    transform: translateX(-60%);
    background: radial-gradient(circle, rgba(59, 91, 219, 0.55) 0%, transparent 70%);
}

.id-welcome-bg__orb--blue {
    width: 420px;
    height: 420px;
    top: 18%;
    right: -80px;
    background: radial-gradient(circle, rgba(59, 91, 219, 0.4) 0%, transparent 70%);
    animation-delay: -6s;
}

.id-welcome-bg__orb--cyan {
    width: 360px;
    height: 360px;
    bottom: 8%;
    left: -60px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 70%);
    animation-delay: -12s;
}

.id-welcome-bg__rings {
    position: absolute;
    top: 42%;
    left: 50%;
    width: min(680px, 92vw);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle, transparent 58%, rgba(255, 255, 255, 0.025) 58.5%, transparent 59%),
        radial-gradient(circle, transparent 68%, rgba(255, 255, 255, 0.02) 68.5%, transparent 69%),
        radial-gradient(circle, transparent 78%, rgba(255, 255, 255, 0.015) 78.5%, transparent 79%),
        radial-gradient(circle, transparent 88%, rgba(255, 255, 255, 0.01) 88.5%, transparent 89%);
    opacity: 0.9;
}

@keyframes id-welcome-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(24px, -16px) scale(1.04); }
    66% { transform: translate(-18px, 12px) scale(0.97); }
}

.id-welcome-bg__orb--violet {
    animation-name: id-welcome-orb-drift-violet;
}

@keyframes id-welcome-orb-drift-violet {
    0%, 100% { transform: translateX(-60%) translate(0, 0) scale(1); }
    33% { transform: translateX(-60%) translate(24px, -16px) scale(1.04); }
    66% { transform: translateX(-60%) translate(-18px, 12px) scale(0.97); }
}

.id-welcome-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* —— Header —— */
.id-welcome-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
}

.id-welcome-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.id-welcome-brand__icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(145deg, #4c6ef5 0%, #364fc7 100%);
    box-shadow: 0 8px 24px rgba(88, 66, 227, 0.45);
}

.id-welcome-brand__text {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.id-welcome-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.id-welcome-apps-anchor {
    position: relative;
}

.id-welcome-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.id-welcome-icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.id-welcome-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.id-welcome-header-btn--ghost {
    color: #f0f0f5;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.id-welcome-header-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.id-welcome-header-btn--primary {
    color: #fff;
    border: 1px solid transparent;
    background: linear-gradient(145deg, #4c6ef5 0%, #364fc7 100%);
    box-shadow: 0 8px 22px rgba(88, 66, 227, 0.38);
}

.id-welcome-header-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(88, 66, 227, 0.48);
}

.id-welcome-apps-popover {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(300px, 88vw);
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(14, 14, 20, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 80;
}

.id-welcome-apps-popover.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.id-welcome-apps-popover__title {
    margin: 0 0 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.id-welcome-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.id-welcome-apps-grid a {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 10px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.id-welcome-apps-grid a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* —— Main —— */
.id-welcome-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    min-height: calc(100vh - 88px);
    padding: 12px 0 36px;
}

.id-welcome-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 720px;
    width: 100%;
    padding-top: 12px;
}

.id-welcome-hero__icon-wrap {
    position: relative;
    width: 112px;
    height: 112px;
    margin-bottom: 28px;
}

.id-welcome-hero__icon-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 92, 255, 0.55) 0%, transparent 68%);
    animation: id-welcome-icon-pulse 3.2s ease-in-out infinite;
}

.id-welcome-hero__icon {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    color: #fff;
    background: linear-gradient(145deg, #5c7cfa 0%, #364fc7 55%, #2b4acb 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 20px 50px rgba(88, 66, 227, 0.55),
        0 0 80px rgba(109, 92, 255, 0.35);
    animation: id-welcome-icon-float 4.5s ease-in-out infinite;
}

@keyframes id-welcome-icon-pulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes id-welcome-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.id-welcome-hero__eyebrow {
    margin: 0 0 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8b7cff;
}

.id-welcome-hero__title {
    margin: 0 0 18px;
    display: grid;
    gap: 2px;
    font-size: clamp(2.4rem, 6vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.id-welcome-hero__title-line {
    color: #fff;
}

.id-welcome-hero__title-line,
.id-welcome-hero__title-grad {
    display: block;
}

.id-welcome-hero__title-grad {
    background: linear-gradient(90deg, #c4b5fd 0%, #818cf8 35%, #6366f1 55%, #38bdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.id-welcome-hero__lead {
    margin: 0 0 32px;
    max-width: 520px;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.52);
}

.id-welcome-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.id-welcome-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: min(240px, 100%);
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.id-welcome-cta i {
    font-size: 0.82rem;
    opacity: 0.85;
}

.id-welcome-cta--primary {
    color: #fff;
    background: linear-gradient(145deg, #4c6ef5 0%, #364fc7 100%);
    border: 1px solid transparent;
    box-shadow: 0 12px 32px rgba(88, 66, 227, 0.42);
}

.id-welcome-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(88, 66, 227, 0.52);
}

.id-welcome-cta--ghost {
    color: #f0f0f5;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.id-welcome-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

/* —— Flow strip —— */
.id-welcome-flow {
    display: flex;
    align-items: center;
    gap: 0;
    width: min(960px, 100%);
    padding: 22px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    animation: id-welcome-flow-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

@keyframes id-welcome-flow-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.id-welcome-flow__step {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.id-welcome-flow__num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.id-welcome-flow__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    color: #fff;
}

.id-welcome-flow__icon--violet {
    background: linear-gradient(145deg, #5c7cfa, #364fc7);
    box-shadow: 0 8px 20px rgba(54, 79, 199, 0.35);
}

.id-welcome-flow__icon--blue {
    background: linear-gradient(145deg, #4c6ef5, #364fc7);
    box-shadow: 0 8px 20px rgba(54, 79, 199, 0.35);
}

.id-welcome-flow__icon--green {
    background: linear-gradient(145deg, #40c057, #2b8a3e);
    box-shadow: 0 8px 20px rgba(43, 138, 62, 0.35);
}

.id-welcome-flow__text {
    display: grid;
    gap: 3px;
    min-width: 0;
    text-align: left;
}

.id-welcome-flow__text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.id-welcome-flow__text span {
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.45);
}

.id-welcome-flow__dash {
    flex: 0 0 36px;
    height: 1px;
    margin: 0 4px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.18) 0,
        rgba(255, 255, 255, 0.18) 5px,
        transparent 5px,
        transparent 10px
    );
    align-self: center;
}

/* —— Responsive —— */
@media (max-width: 900px) {
    .id-welcome-shell {
        width: min(1180px, calc(100% - 32px));
    }

    .id-welcome-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px;
    }

    .id-welcome-flow__dash {
        flex: none;
        width: 100%;
        height: 1px;
        margin: 0;
    }
}

@media (max-width: 640px) {
    .id-welcome-header {
        padding: 16px 0;
    }

    .id-welcome-header-btn--ghost {
        display: none;
    }

    .id-welcome-hero__actions {
        flex-direction: column;
    }

    .id-welcome-cta {
        width: 100%;
        min-width: 0;
    }

    .id-welcome-flow__step {
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .id-welcome-bg__orb,
    .id-welcome-hero__icon,
    .id-welcome-hero__icon-glow {
        animation: none;
    }

    .id-welcome-flow {
        animation: none;
    }
}

/* —— Auth pages (login / register / forgot) —— */
.id-auth-page .id-auth-main {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 16px 0 48px;
    min-height: calc(100vh - 88px);
}

.id-auth-card {
    width: min(480px, 100%);
    padding: 32px 28px 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
    animation: id-auth-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.id-auth-card--wide {
    width: min(560px, 100%);
}

@keyframes id-auth-card-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.id-auth-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 1.35rem;
    color: #fff;
    background: linear-gradient(145deg, #5c7cfa 0%, #364fc7 100%);
    box-shadow: 0 12px 28px rgba(88, 66, 227, 0.38);
}

.id-auth-card__icon--blue {
    background: linear-gradient(145deg, #4c6ef5, #364fc7);
    box-shadow: 0 12px 28px rgba(54, 79, 199, 0.38);
}

.id-auth-eyebrow {
    margin: 0 0 8px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b7cff;
}

.id-auth-title {
    margin: 0 0 8px;
    text-align: center;
    font-size: clamp(1.55rem, 4vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
}

.id-auth-lead {
    margin: 0 0 22px;
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.48);
}

.id-auth-lead strong {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.id-auth-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 22px;
}

.id-auth-step-dot {
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.id-auth-step-dot.is-active {
    background: linear-gradient(90deg, #4c6ef5, #364fc7);
    box-shadow: 0 0 12px rgba(109, 92, 255, 0.45);
}

.id-auth-field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.id-auth-field label {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.id-auth-field input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.id-auth-field input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.id-auth-field input:focus {
    outline: none;
    border-color: rgba(109, 92, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(109, 92, 255, 0.18);
}

.id-auth-field-hint {
    margin: -8px 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.38);
}

.id-auth-input-wrap {
    position: relative;
}

.id-auth-input-wrap input {
    padding-right: 46px;
}

.id-auth-input-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease;
}

.id-auth-input-toggle:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}

.id-auth-error {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.1);
    color: #fca5a5;
    font-size: 0.88rem;
}

.id-auth-error ul {
    margin: 0;
    padding-left: 18px;
}

.id-auth-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.id-auth-notice__icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-top: 2px;
}

.id-auth-notice__title {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 4px;
    color: #fff;
}

.id-auth-notice__text,
.id-auth-notice__list {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.id-auth-notice__list {
    padding-left: 18px;
}

.id-auth-notice.is-success {
    border-color: rgba(64, 192, 87, 0.35);
    background: rgba(64, 192, 87, 0.1);
}

.id-auth-notice.is-success .id-auth-notice__icon {
    color: #69db7c;
}

.id-auth-notice.is-error {
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.1);
}

.id-auth-notice.is-error .id-auth-notice__icon,
.id-auth-notice.is-error .id-auth-notice__title {
    color: #fca5a5;
}

.id-auth-sent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.id-auth-sent i {
    color: #8b7cff;
}

.id-auth-sent strong {
    color: #fff;
}

.id-auth-referral {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(109, 92, 255, 0.28);
    background: rgba(109, 92, 255, 0.1);
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

.id-auth-referral i {
    color: #a78bfa;
    margin-top: 2px;
}

.id-auth-referral strong {
    color: #fff;
}

.id-auth-flow-step {
    min-height: 220px;
}

.id-auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    padding-top: 8px;
}

.id-auth-actions--end {
    justify-content: flex-end;
}

.id-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #f0f0f5;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.id-auth-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.id-auth-btn--primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(145deg, #4c6ef5 0%, #364fc7 100%);
    box-shadow: 0 10px 24px rgba(88, 66, 227, 0.38);
}

.id-auth-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(88, 66, 227, 0.48);
}

.id-auth-btn--link {
    border: none;
    background: transparent;
    padding: 12px 4px;
    color: rgba(255, 255, 255, 0.52);
}

.id-auth-btn--link:hover {
    color: #c4b5fd;
    background: transparent;
}

.id-auth-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.id-auth-btn.is-hidden,
.id-auth-btn[hidden] {
    display: none !important;
}

@media (max-width: 640px) {
    .id-auth-card {
        padding: 24px 18px 20px;
        border-radius: 18px;
    }

    .id-auth-actions {
        flex-wrap: wrap;
    }

    .id-auth-btn--primary {
        flex: 1;
        min-width: 140px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .id-auth-card {
        animation: none;
    }
}
