/* VLADIO AUTH — consolidated styles */

/* ===== register.css ===== */
:root {
    --vladio-bg: #060d14;
    --vladio-bg-soft: #09131d;

    --vladio-blue: #7ec8ff;
    --vladio-blue-light: #a6d8ff;
    --vladio-blue-strong: #5faee8;

    --vladio-navy: #071b3a;
    --vladio-white: #ffffff;

    --vladio-text: #eef6ff;
    --vladio-text-soft: #91a4b8;
    --vladio-text-muted: #64778a;

    --vladio-border: rgba(166, 216, 255, 0.16);
    --vladio-border-focus: rgba(126, 200, 255, 0.75);

    --vladio-input: rgba(255, 255, 255, 0.025);
    --vladio-input-focus: rgba(126, 200, 255, 0.05);

    --vladio-error: #ff6b6b;
    --vladio-success: #62d29b;
}


* {
    box-sizing: border-box;
}


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


body {
    min-height: 100vh;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(126, 200, 255, 0.035),
            transparent 38%
        ),
        var(--vladio-bg);

    color: var(--vladio-text);
}


/* =========================================================
   PAGE
========================================================= */

.register-page {
    width: 100%;
    min-height: 100vh;

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

    padding:
        48px
        24px;
}


/* =========================================================
   MAIN
========================================================= */

.register-main {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   CENTERED CONTENT
========================================================= */

.register-main-inner {
    width: 100%;
    max-width: 512px;

    margin:
        0
        auto;
}


/* =========================================================
   MOBILE TOP / LOGO
========================================================= */

.register-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 42px;
}


.register-logo {
    color: var(--vladio-blue);

    text-decoration: none;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: 0.12em;
}


.register-languages {
    display: flex;
    align-items: center;

    gap: 14px;
}


.register-languages a {
    color: var(--vladio-text-muted);

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition:
        color
        0.2s
        ease;
}


.register-languages a:hover {
    color: var(--vladio-blue);
}


.register-languages a.active {
    color: var(--vladio-blue);
}


/* =========================================================
   HEADING
========================================================= */

.register-heading {
    margin-bottom: 40px;
}


.register-stage {
    display: block;

    margin-bottom: 16px;

    color: var(--vladio-blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.16em;
}


.register-heading h2 {
    margin:
        0
        0
        12px;

    color: var(--vladio-text);

    font-size: 42px;
    font-weight: 750;

    line-height: 1.08;

    letter-spacing: -0.035em;
}


.register-heading p {
    margin: 0;

    color: var(--vladio-text-soft);

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   FORM
========================================================= */

.register-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 22px;
}


/* =========================================================
   GLOBAL ERROR
========================================================= */

.register-form-error {
    padding:
        14px
        16px;

    border:
        1px solid
        rgba(255, 107, 107, 0.3);

    border-radius: 12px;

    background:
        rgba(255, 107, 107, 0.08);

    color:
        var(--vladio-error);

    font-size:
        13px;

    line-height:
        1.5;
}


/* =========================================================
   ROW
========================================================= */

.register-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   FIELD
========================================================= */

.register-field {
    width: 100%;
}


.register-field label {
    display: block;

    margin-bottom: 8px;

    color: var(--vladio-text-soft);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.02em;
}


/* =========================================================
   INPUTS
========================================================= */

.register-field input {
    width: 100%;
    height: 52px;

    padding:
        0
        16px;

    border:
        1px solid
        var(--vladio-border);

    border-radius:
        12px;

    outline:
        none;

    background:
        var(--vladio-input);

    color:
        var(--vladio-text);

    font-size:
        14px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.register-field input::placeholder {
    color:
        var(--vladio-text-muted);

    opacity:
        1;
}


.register-field input:hover {
    border-color:
        rgba(166, 216, 255, 0.26);
}


.register-field input:focus {
    border-color:
        var(--vladio-border-focus);

    background:
        var(--vladio-input-focus);

    box-shadow:
        0 0 0 4px
        rgba(126, 200, 255, 0.08);
}


/* =========================================================
   DATE INPUT
========================================================= */

.register-field input[type="date"] {
    color-scheme:
        dark;

    cursor:
        pointer;
}


/* =========================================================
   PHONE
========================================================= */

.register-phone {
    width: 100%;
    height: 52px;

    display: flex;
    align-items: center;

    border:
        1px solid
        var(--vladio-border);

    border-radius:
        12px;

    overflow:
        hidden;

    background:
        var(--vladio-input);

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.register-phone:focus-within {
    border-color:
        var(--vladio-border-focus);

    background:
        var(--vladio-input-focus);

    box-shadow:
        0 0 0 4px
        rgba(126, 200, 255, 0.08);
}


.register-phone span {
    height: 100%;

    display: flex;
    align-items: center;

    padding:
        0
        15px;

    border-right:
        1px solid
        var(--vladio-border);

    color:
        var(--vladio-blue-light);

    font-size:
        13px;

    font-weight:
        600;
}


.register-phone input {
    height: 100% !important;

    padding-left:
        15px !important;

    border:
        none !important;

    border-radius:
        0 !important;

    box-shadow:
        none !important;

    background:
        transparent !important;
}


/* =========================================================
   PASSWORD
========================================================= */

.register-password {
    position: relative;

    width: 100%;
}


.register-password input {
    padding-right:
        56px;
}


/* =========================================================
   PASSWORD EYE BUTTON
========================================================= */

.register-password-toggle {
    position: absolute;

    top: 50%;
    right: 0;

    width: 52px;
    height: 52px;

    transform:
        translateY(-50%);

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

    padding: 0;

    border:
        none;

    outline:
        none;

    background:
        transparent;

    cursor:
        pointer;

    color:
        var(--vladio-text-soft);
}


/*
    ВАЖНО:
    SVG path в твоём HTML не имеет fill/stroke.

    Поэтому мы задаём stroke здесь,
    чтобы глаз НЕ был чёрным.
*/

.register-password-toggle svg {
    width: 20px;
    height: 20px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

    transition:
        color
        0.2s
        ease;
}


.register-password-toggle svg circle {
    fill:
        none;

    stroke:
        currentColor;
}


.register-password-toggle:hover {
    color:
        var(--vladio-blue);
}


.eye-closed {
    display:
        none;
}


/*
    Когда JS добавляет .is-visible
*/

.register-password-toggle.is-visible .eye-open {
    display:
        none;
}


.register-password-toggle.is-visible .eye-closed {
    display:
        block;
}


/* =========================================================
   PASSWORD RULES
========================================================= */

.register-password-rules {
    display: flex;
    flex-wrap: wrap;

    gap:
        8px;

    margin-top:
        8px;
}


.register-password-rules span {
    padding:
        5px
        9px;

    border:
        1px solid
        rgba(166, 216, 255, 0.12);

    border-radius:
        6px;

    color:
        var(--vladio-text-muted);

    font-size:
        9px;

    line-height:
        1;
}


.register-password-rules span.is-valid {
    border-color:
        rgba(98, 210, 155, 0.3);

    color:
        var(--vladio-success);

    background:
        rgba(98, 210, 155, 0.05);
}


/* =========================================================
   ERRORS
========================================================= */

.register-error {
    display: block;

    margin-top:
        7px;

    color:
        var(--vladio-error);

    font-size:
        11px;

    line-height:
        1.4;
}


.register-field.has-error input,
.register-field.has-error .register-phone {
    border-color:
        rgba(255, 107, 107, 0.75);
}


/* =========================================================
   CONSENT
========================================================= */

.register-consent {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap:
        10px;

    cursor:
        pointer;

    color:
        var(--vladio-text-soft);

    font-size:
        11px;

    line-height:
        1.6;
}


.register-consent input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}


.register-checkbox {
    width: 17px;
    height: 17px;

    flex:
        0
        0
        17px;

    margin-top:
        1px;

    border:
        1px solid
        var(--vladio-border);

    border-radius:
        5px;

    background:
        transparent;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;

    position:
        relative;
}


.register-consent input:checked
+ .register-checkbox {
    border-color:
        var(--vladio-blue);

    background:
        var(--vladio-blue);
}


.register-consent input:checked
+ .register-checkbox::after {
    content:
        "";

    position:
        absolute;

    left:
        5px;

    top:
        2px;

    width:
        4px;

    height:
        8px;

    border:
        solid
        var(--vladio-navy);

    border-width:
        0
        2px
        2px
        0;

    transform:
        rotate(45deg);
}


.register-consent a {
    color:
        var(--vladio-blue);

    text-decoration:
        none;
}


.register-consent a:hover {
    text-decoration:
        underline;
}


.register-consent-error {
    display: block;

    margin-top:
        7px;

    color:
        var(--vladio-error);

    font-size:
        11px;
}


/* =========================================================
   SUBMIT
========================================================= */

.register-submit {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        0
        20px;

    border:
        none;

    border-radius:
        12px;

    background:
        linear-gradient(
            135deg,
            #7ec8ff,
            #5f9fda
        );

    color:
        #071b3a;

    cursor:
        pointer;

    font-size:
        13px;

    font-weight:
        800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}


.register-submit:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 12px 30px
        rgba(126, 200, 255, 0.15);
}


.register-submit:active {
    transform:
        translateY(0);
}


.register-submit span:last-child {
    font-size:
        20px;

    font-weight:
        500;
}


/* =========================================================
   LOGIN
========================================================= */

.register-login {
    margin-top:
        4px;

    text-align:
        center;

    color:
        var(--vladio-text-muted);

    font-size:
        11px;
}


.register-login a {
    margin-left:
        5px;

    color:
        var(--vladio-blue-light);

    font-weight:
        700;

    text-decoration:
        none;
}


.register-login a:hover {
    text-decoration:
        underline;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 700px) {

    .register-page {
        align-items:
            flex-start;

        padding:
            32px
            20px;
    }


    .register-main-inner {
        max-width:
            100%;
    }


    .register-heading h2 {
        font-size:
            36px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .register-page {
        padding:
            24px
            16px;
    }


    .register-mobile-top {
        margin-bottom:
            36px;
    }


    .register-row {
        grid-template-columns:
            1fr;

        gap:
            22px;
    }


    .register-heading {
        margin-bottom:
            32px;
    }


    .register-heading h2 {
        font-size:
            32px;
    }


    .register-form {
        gap:
            20px;
    }

}
/* =========================================
   VLADIO REGISTER
   FIX CHROME AUTOFILL
========================================= */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;

    -webkit-box-shadow:
        0 0 0 1000px #0d141a inset !important;

    box-shadow:
        0 0 0 1000px #0d141a inset !important;

    caret-color:
        #ffffff !important;

    transition:
        background-color 9999s ease-in-out 0s !important;
}


/* Firefox autofill */

input:autofill {
    background-color:
        #0d141a !important;

    color:
        #ffffff !important;
}


/* Если поле с паролем */

input[type="password"]:-webkit-autofill,
input[type="email"]:-webkit-autofill,
input[type="text"]:-webkit-autofill,
input[type="tel"]:-webkit-autofill,
input[type="date"]:-webkit-autofill {
    -webkit-text-fill-color:
        #ffffff !important;

    -webkit-box-shadow:
        0 0 0 1000px #0d141a inset !important;

    box-shadow:
        0 0 0 1000px #0d141a inset !important;
}

/* ===== verify.css ===== */
:root {
    --vladio-bg: #071018;
    --vladio-bg-soft: #0b141d;
    --vladio-card: #0d171f;

    --vladio-blue: #7ec8ff;
    --vladio-blue-strong: #5ea9e6;

    --vladio-text: #f4f8fc;
    --vladio-text-soft: #9aabba;
    --vladio-text-muted: #6f8190;

    --vladio-border: rgba(126, 200, 255, 0.14);
    --vladio-border-focus: rgba(126, 200, 255, 0.65);

    --vladio-success: #4fca87;
    --vladio-error: #ff6666;
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}


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


body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--vladio-bg);

    color:
        var(--vladio-text);
}


button,
input {
    font: inherit;
}


/* =========================================
   PAGE
   REAL CENTER
========================================= */

.verify-page {
    width: 100%;
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 32px 20px;
}


/* =========================================
   CARD
========================================= */

.verify-card {
    width: 100%;
    max-width: 560px;

    margin: 0 auto;

    padding: 48px;

    background:
        transparent;
}


/* =========================================
   BRAND
========================================= */

.verify-brand {
    margin-bottom: 10px;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 0.06em;

    color:
        var(--vladio-blue);
}


/* =========================================
   HEADER
========================================= */

.verify-header {
    margin-bottom: 34px;
}


.verify-eyebrow {
    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.12em;

    color:
        var(--vladio-text-muted);
}


.verify-title {
    margin: 0;

    font-size: 42px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -0.025em;

    color:
        var(--vladio-text);
}


.verify-description {
    max-width: 480px;

    margin: 16px 0 0;

    font-size: 16px;

    line-height: 1.65;

    color:
        var(--vladio-text-soft);
}


/* =========================================
   VERIFICATION METHOD
========================================= */

.verify-method {
    width: 100%;

    padding: 20px;

    margin-bottom: 16px;

    border:
        1px solid
        var(--vladio-border);

    border-radius: 16px;

    background:
        var(--vladio-bg-soft);
}


.verify-method-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 14px;
}


.verify-method-name {
    margin-bottom: 6px;

    font-size: 15px;

    font-weight: 700;

    color:
        var(--vladio-text);
}


.verify-method-destination {
    font-size: 14px;

    color:
        var(--vladio-text-soft);

    letter-spacing: 0.02em;
}


/* =========================================
   INPUT
========================================= */

.verify-input {
    width: 100%;

    height: 58px;

    padding: 0 18px;

    border:
        1px solid
        var(--vladio-border);

    border-radius: 14px;

    outline: none;

    background:
        #0a1219;

    color:
        var(--vladio-text);

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 0.12em;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.verify-input::placeholder {
    color:
        #718291;

    font-weight: 600;

    letter-spacing: 0.1em;
}


.verify-input:hover {
    border-color:
        rgba(126, 200, 255, 0.28);
}


.verify-input:focus {
    border-color:
        var(--vladio-border-focus);

    box-shadow:
        0 0 0 4px
        rgba(126, 200, 255, 0.09);
}


/* =========================================
   CHROME AUTOFILL FIX
   NO WHITE BACKGROUND
========================================= */

.verify-input:-webkit-autofill,
.verify-input:-webkit-autofill:hover,
.verify-input:-webkit-autofill:focus,
.verify-input:-webkit-autofill:active {
    -webkit-text-fill-color:
        var(--vladio-text) !important;

    -webkit-box-shadow:
        0 0 0 1000px #0a1219 inset !important;

    box-shadow:
        0 0 0 1000px #0a1219 inset !important;

    caret-color:
        var(--vladio-text);

    transition:
        background-color 99999s ease-in-out 0s;
}


/* =========================================
   SPAM WARNING
========================================= */

.verify-spam-warning {
    margin: 12px 0 0;

    font-size: 12px;

    line-height: 1.5;

    color:
        var(--vladio-text-muted);
}


/* =========================================
   STATUS
========================================= */

.verify-status {
    min-height: 22px;

    margin: 18px 0;

    font-size: 14px;

    line-height: 1.5;

    color:
        var(--vladio-text-soft);
}


.verify-status-success {
    color:
        var(--vladio-success);
}


.verify-status-error {
    color:
        var(--vladio-error);
}


/* =========================================
   CONFIRM BUTTON
========================================= */

.verify-confirm-button {
    width: 100%;

    height: 56px;

    border: none;

    border-radius: 14px;

    cursor: pointer;

    background:
        linear-gradient(
            90deg,
            #6eabe0 0%,
            #7ec8ff 100%
        );

    color:
        #071018;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        box-shadow 0.2s ease;
}


.verify-confirm-button:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 10px 30px
        rgba(126, 200, 255, 0.14);
}


.verify-confirm-button:active {
    transform:
        translateY(0);
}


.verify-confirm-button:disabled {
    cursor:
        not-allowed;

    opacity:
        0.55;

    transform:
        none;
}


/* =========================================
   RESEND BUTTON
========================================= */

.verify-resend-button {
    width: 100%;

    min-height: 46px;

    margin-top: 10px;

    padding: 10px 16px;

    border:
        1px solid
        transparent;

    border-radius: 12px;

    cursor: pointer;

    background:
        transparent;

    color:
        var(--vladio-blue);

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.verify-resend-button:hover {
    background:
        rgba(126, 200, 255, 0.06);
}


.verify-resend-button:disabled {
    cursor:
        not-allowed;

    opacity:
        0.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 700px) {

    .verify-page {
        padding:
            24px 16px;
    }


    .verify-card {
        max-width: 560px;

        padding:
            36px 24px;
    }


    .verify-title {
        font-size:
            36px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .verify-page {
        align-items:
            flex-start;

        padding:
            24px 14px;
    }


    .verify-card {
        padding:
            24px 8px;
    }


    .verify-brand {
        font-size:
            16px;
    }


    .verify-title {
        font-size:
            32px;
    }


    .verify-description {
        font-size:
            15px;
    }


    .verify-method {
        padding:
            16px;
    }


    .verify-input {
        height:
            54px;

        font-size:
            15px;
    }


    .verify-method-header {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            6px;
    }

}

/* ===== setup-biometric.css ===== */
:root {
    --bg: #050b12;
    --card: #0b1b29;
    --card-light: #10273a;

    --blue: #7ec8ff;
    --blue-light: #a6d8ff;

    --text: #f3f8fd;
    --text-soft: #a9bac9;
    --text-muted: #718596;

    --border: rgba(166, 216, 255, 0.14);
    --border-strong: rgba(126, 200, 255, 0.25);

    --success: #62d29b;
}

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(126, 200, 255, 0.09),
            transparent 40%
        ),
        linear-gradient(
            145deg,
            #040a10 0%,
            #07111a 55%,
            #040a10 100%
        );
}


/* =========================================
   PAGE
========================================= */

.biometric-page {
    width: 100%;
    min-height: 100vh;

    padding: 40px 24px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}


/* =========================================
   CARD
========================================= */

.biometric-card {
    width: min(960px, 100%);
    min-height: 520px;

    position: relative;

    overflow: hidden;

    border-radius: 26px;

    border: 1px solid var(--border-strong);

    background:
        linear-gradient(
            135deg,
            rgba(16, 39, 58, 0.98),
            rgba(7, 19, 30, 0.98)
        );

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.biometric-card::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -300px;
    top: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(126, 200, 255, 0.10),
            transparent 70%
        );

    pointer-events: none;
}

.biometric-card::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -250px;
    bottom: -260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(126, 200, 255, 0.06),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================
   DESKTOP
========================================= */

.biometric-desktop {
    display: block !important;
}


/* =========================================
   BRAND
========================================= */

.biometric-brand {
    position: absolute;

    top: 28px;
    left: 34px;

    z-index: 20;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.3em;

    color: var(--blue);
}


/* =========================================
   ICON
========================================= */

.biometric-icon {
    position: absolute;

    left: 52px;
    top: 50%;

    transform: translateY(-50%);

    width: 64px;
    height: 64px;

    z-index: 10;

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

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(126, 200, 255, 0.14),
            rgba(126, 200, 255, 0.035)
        );

    border: 1px solid rgba(126, 200, 255, 0.22);
}

.biometric-icon svg {
    width: 34px;
    height: 34px;

    fill: none;

    stroke: var(--blue-light);

    stroke-width: 2;

    stroke-linecap: round;
}


/* =========================================
   CONTENT GRID
========================================= */

.biometric-content {
    width: 100%;
    min-height: 520px;

    padding:
        92px
        54px
        54px
        145px;

    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        320px;

    grid-template-rows:
        auto
        auto
        auto
        auto
        auto
        1fr
        auto;

    column-gap: 45px;

    align-content: center;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.biometric-eyebrow {
    grid-column: 1;
    grid-row: 1;

    margin: 0 0 10px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    color: var(--blue);
}

.biometric-title {
    grid-column: 1;
    grid-row: 2;

    margin: 0;

    max-width: 390px;

    font-size: 36px;
    line-height: 1.08;

    font-weight: 750;

    letter-spacing: -0.04em;

    color: var(--text);
}

.biometric-description {
    grid-column: 1;
    grid-row: 3;

    max-width: 390px;

    margin: 17px 0 0;

    font-size: 13px;
    line-height: 1.65;

    color: var(--text-soft);
}

.biometric-name {
    grid-column: 1;
    grid-row: 4;

    width: fit-content;

    margin-top: 19px;

    padding: 8px 12px;

    border-radius: 9px;

    background:
        rgba(126, 200, 255, 0.06);

    border: 1px solid rgba(126, 200, 255, 0.13);

    font-size: 10px;
    font-weight: 700;

    color: var(--blue-light);
}


/* =========================================
   QR
========================================= */

.biometric-qr-section {
    grid-column: 2;
    grid-row: 1 / 8;

    width: 320px;

    height: 100%;

    min-height: 320px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: static;

    transform: none;

    z-index: 10;
}

.qr-wrapper {
    width: 300px;
    height: 300px;

    padding: 14px;

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

    flex-shrink: 0;

    background: #ffffff;

    border-radius: 21px;

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

#login-qr {
    width: 272px;
    height: 272px;

    display: flex;

    align-items: center;
    justify-content: center;
}

#login-qr img,
#login-qr canvas {
    width: 272px !important;
    height: 272px !important;

    display: block;
}


/* =========================================
   STATUS
========================================= */

.camera-status {
    grid-column: 1;
    grid-row: 5;

    max-width: 390px;

    margin-top: 15px;

    font-size: 11px;
    line-height: 1.5;

    color: var(--text-muted);
}


/* =========================================
   BACK
========================================= */

.biometric-secondary-button {
    grid-column: 1;
    grid-row: 6;

    align-self: end;

    width: 100%;
    max-width: 390px;

    min-height: 44px;

    margin-top: 18px;

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

    border-radius: 11px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    color: var(--text-soft);

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

    border: 1px solid var(--border);

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.biometric-secondary-button:hover {
    color: var(--text);

    background:
        rgba(126, 200, 255, 0.05);

    border-color:
        rgba(126, 200, 255, 0.25);
}


/* =========================================
   PRIMARY
========================================= */

.biometric-primary-button {
    width: 100%;
    max-width: 390px;

    min-height: 46px;

    margin-top: 18px;

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

    border-radius: 11px;

    text-decoration: none;

    color: #06111a;

    background:
        linear-gradient(
            135deg,
            var(--blue-light),
            var(--blue)
        );

    font-size: 12px;
    font-weight: 800;
}


/* =========================================
   SECURITY
========================================= */

.biometric-security {
    width: min(960px, 100%);

    min-height: 52px;

    margin-top: 14px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    gap: 11px;

    border-radius: 12px;

    background:
        rgba(7, 19, 29, 0.82);

    border: 1px solid rgba(126, 200, 255, 0.08);
}

.biometric-security-icon {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

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

    border-radius: 50%;

    background:
        rgba(98, 210, 155, 0.10);

    color: var(--success);

    font-size: 11px;
    font-weight: 800;
}

.biometric-security div:last-child {
    display: flex;
    align-items: center;
    gap: 7px;
}

.biometric-security strong {
    font-size: 10px;

    color: var(--text);

    white-space: nowrap;
}

.biometric-security span {
    font-size: 10px;

    color: var(--text-muted);
}


/* =========================================
   FOOTER
========================================= */

.biometric-footer {
    margin-top: 18px;

    font-size: 9px;

    letter-spacing: 0.08em;

    color: rgba(145, 164, 184, 0.42);
}


/* =========================================
   MOBILE VERSION
========================================= */

.biometric-mobile {
    display: none !important;
}


/* =========================================
   900px
========================================= */

@media (max-width: 900px) {

    .biometric-page {
        padding: 30px 18px;
    }

    .biometric-card {
        width: min(720px, 100%);
    }

    .biometric-content {
        padding-left: 115px;
        padding-right: 35px;

        grid-template-columns:
            minmax(0, 1fr)
            280px;

        column-gap: 25px;
    }

    .biometric-icon {
        left: 30px;
    }

    .biometric-qr-section {
        width: 280px;
    }

    .qr-wrapper {
        width: 255px;
        height: 255px;
    }

    #login-qr,
    #login-qr img,
    #login-qr canvas {
        width: 229px !important;
        height: 229px !important;
    }

    .biometric-title {
        font-size: 31px;
    }
}


/* =========================================
   700px — MOBILE
========================================= */

@media (max-width: 700px) {

    .biometric-page {
        padding: 16px 13px;
    }

    .biometric-desktop {
        display: none !important;
    }

    .biometric-mobile {
        display: flex !important;

        flex-direction: column;

        width: 100%;

        min-height: auto;

        padding: 0;
    }

    .biometric-mobile .biometric-brand {
        top: 23px;
        left: 24px;
    }

    .biometric-mobile .biometric-icon {
        position: relative;

        left: auto;
        top: auto;

        transform: none;

        margin: 76px auto 0;
    }

    .biometric-mobile .biometric-content {
        min-height: auto;

        padding:
            25px
            22px
            30px;

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 0;
    }

    .biometric-mobile .biometric-eyebrow {
        margin-bottom: 10px;
    }

    .biometric-mobile .biometric-title {
        max-width: 360px;

        font-size: 29px;
    }

    .biometric-mobile .biometric-description {
        max-width: 350px;

        margin-top: 14px;

        font-size: 13px;
    }

    .biometric-mobile .biometric-primary-button {
        max-width: 360px;

        margin-top: 24px;
    }

    .biometric-mobile .biometric-secondary-button {
        max-width: 360px;
    }

    .biometric-mobile .camera-status {
        margin-top: 13px;
    }

    .biometric-security {
        width: 100%;

        padding: 13px;

        align-items: flex-start;
    }

    .biometric-security div:last-child {
        flex-direction: column;

        align-items: flex-start;

        gap: 3px;
    }
}


/* =========================================
   400px
========================================= */

@media (max-width: 400px) {

    .biometric-page {
        padding: 12px;
    }

    .biometric-mobile .biometric-content {
        padding-left: 17px;
        padding-right: 17px;
    }

    .biometric-mobile .biometric-title {
        font-size: 26px;
    }

    .biometric-security strong {
        font-size: 9px;
    }

    .biometric-security span {
        font-size: 9px;
    }
}

/* ===== setup-payment.css ===== */

/* =========================================================
   VLADIO — SETUP PAYMENT
   ========================================================= */

:root {
    --vladio-bg: #060d14;
    --vladio-bg-soft: #09131d;
    --vladio-card: #0b1b29;

    --vladio-blue: #7ec8ff;
    --vladio-blue-light: #a6d8ff;
    --vladio-blue-strong: #5faee8;

    --vladio-navy: #071b3a;
    --vladio-white: #ffffff;

    --vladio-text: #eef6ff;
    --vladio-text-soft: #91a4b8;
    --vladio-text-muted: #64778a;

    --vladio-border: rgba(166, 216, 255, 0.16);
    --vladio-border-strong: rgba(126, 200, 255, 0.25);
    --vladio-border-focus: rgba(126, 200, 255, 0.75);

    --vladio-input: rgba(255, 255, 255, 0.025);
    --vladio-input-focus: rgba(126, 200, 255, 0.05);

    --vladio-success: #62d29b;
    --vladio-error: #ff6b6b;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--vladio-text);

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(126, 200, 255, 0.045),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #040a10 0%,
            #07111a 55%,
            #040a10 100%
        );
}

button,
input {
    font: inherit;
}


/* =========================================================
   PAGE
   ========================================================= */

.page {
    width: 100%;
    min-height: 100vh;

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

    padding: 48px 24px;
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: 560px;

    margin: 0 auto;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    margin-bottom: 42px;

    color: var(--vladio-blue);

    font-size: 22px;
    font-weight: 800;

    letter-spacing: 0.12em;
}


/* =========================================================
   PROGRESS
   ========================================================= */

.progress {
    width: 100%;
    height: 4px;

    margin-bottom: 38px;

    overflow: hidden;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.06);
}

.progress-fill {
    width: 80%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            var(--vladio-blue),
            var(--vladio-blue-strong)
        );
}


/* =========================================================
   HEADING
   ========================================================= */

h1 {
    margin:
        0
        0
        12px;

    color: var(--vladio-text);

    font-size: 42px;
    font-weight: 750;

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.subtitle {
    max-width: 500px;

    margin:
        0
        0
        34px;

    color: var(--vladio-text-soft);

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   PAYMENT BOX
   ========================================================= */

.payment-box {
    width: 100%;

    padding: 22px;

    border:
        1px solid
        var(--vladio-border);

    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.18);
}


/* =========================================================
   LOADING
   ========================================================= */

#loading {
    min-height: 20px;

    margin-bottom: 18px;

    color: var(--vladio-text-muted);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   STRIPE PAYMENT ELEMENT
   ========================================================= */

#payment-element {
    width: 100%;

    min-height: 100px;
}


/*
   Stripe renders the actual inputs inside an iframe,
   therefore their internal colors are controlled through
   Stripe Elements appearance settings in JavaScript.

   These rules control the surrounding Stripe element.
*/

#payment-element iframe {
    width: 100% !important;
}


/* =========================================================
   CONSENT
   ========================================================= */

.consent {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 22px;

    cursor: pointer;

    color: var(--vladio-text-soft);

    font-size: 11px;

    line-height: 1.6;
}

.consent input {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    margin:
        1px
        0
        0;

    appearance: none;
    -webkit-appearance: none;

    border:
        1px solid
        var(--vladio-border);

    border-radius: 5px;

    outline: none;

    background:
        transparent;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.consent input:hover {
    border-color:
        rgba(166, 216, 255, 0.30);
}

.consent input:focus-visible {
    border-color:
        var(--vladio-border-focus);

    box-shadow:
        0 0 0 4px
        rgba(126, 200, 255, 0.08);
}

.consent input:checked {
    border-color:
        var(--vladio-blue);

    background:
        var(--vladio-blue);
}

.consent input:checked::after {
    content: "";

    display: block;

    width: 5px;
    height: 9px;

    margin:
        2px
        auto
        0;

    border:
        solid
        var(--vladio-navy);

    border-width:
        0
        2px
        2px
        0;

    transform:
        rotate(45deg);
}


/* =========================================================
   ERROR
   ========================================================= */

.error {
    display: none;

    margin-top: 14px;

    padding:
        12px
        14px;

    border:
        1px solid
        rgba(255, 107, 107, 0.30);

    border-radius: 10px;

    background:
        rgba(255, 107, 107, 0.08);

    color:
        var(--vladio-error);

    font-size: 12px;

    line-height: 1.5;
}

.error:not(:empty) {
    display: block;
}


/* =========================================================
   SECURITY
   ========================================================= */

.security {
    width: 100%;

    margin-top: 16px;

    padding:
        12px
        16px;

    border:
        1px solid
        rgba(126, 200, 255, 0.08);

    border-radius: 12px;

    background:
        rgba(7, 19, 29, 0.82);

    color:
        var(--vladio-text-muted);

    font-size: 10px;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.actions {
    width: 100%;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;

    margin-top: 22px;
}


/* =========================================================
   BACK BUTTON
   ========================================================= */

.back {
    min-height: 54px;

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

    padding:
        0
        18px;

    border:
        1px solid
        var(--vladio-border);

    border-radius: 12px;

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

    color:
        var(--vladio-text-soft);

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.back:hover {
    color:
        var(--vladio-text);

    background:
        rgba(126, 200, 255, 0.05);

    border-color:
        rgba(126, 200, 255, 0.25);

    transform:
        translateY(-1px);
}

.back:active {
    transform:
        translateY(0);
}


/* =========================================================
   CONTINUE BUTTON
   ========================================================= */

.continue {
    min-height: 54px;

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

    padding:
        0
        20px;

    border: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--vladio-blue),
            var(--vladio-blue-strong)
        );

    color:
        #071b3a;

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.continue:hover:not(:disabled) {
    transform:
        translateY(-1px);

    box-shadow:
        0 12px 30px
        rgba(126, 200, 255, 0.15);
}

.continue:active:not(:disabled) {
    transform:
        translateY(0);
}

.continue:disabled {
    opacity: 0.45;

    cursor: not-allowed;

    box-shadow: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 700px) {

    .page {
        align-items: flex-start;

        padding:
            32px
            20px;
    }

    .container {
        max-width: 100%;
    }

    h1 {
        font-size: 36px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .page {
        padding:
            24px
            16px;
    }

    .logo {
        margin-bottom: 36px;

        font-size: 20px;
    }

    .progress {
        margin-bottom: 32px;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        margin-bottom: 28px;

        font-size: 14px;
    }

    .payment-box {
        padding: 18px;
    }

    .consent {
        font-size: 10.5px;
    }

    .actions {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .continue {
        order: 1;
    }

    .back {
        order: 2;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .page {
        padding:
            20px
            14px;
    }

    .logo {
        font-size: 18px;
    }

    h1 {
        font-size: 29px;
    }

    .subtitle {
        font-size: 13px;
    }

    .payment-box {
        padding: 15px;
    }

    .security {
        font-size: 9px;
    }

}



/* ===== setup-2fa-choice.css ===== */
* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #060d14;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(126, 200, 255, 0.10),
            transparent 38%
        ),
        #060d14;
    color: #eef6ff;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
a {
    font: inherit;
}

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

.twofa-choice-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.twofa-choice-card {
    width: 100%;
    max-width: 580px;
    padding: 42px;
    position: relative;
    overflow: hidden;
    background: #0b1722;
    border: 1px solid rgba(126, 200, 255, 0.13);
    border-radius: 24px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(255, 255, 255, 0.01);
}

.twofa-choice-card::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(126, 200, 255, 0.055);
    filter: blur(5px);
    pointer-events: none;
}

.twofa-choice-badge {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    margin-bottom: 22px;
    padding: 0 11px;
    position: relative;
    z-index: 1;
    background: rgba(126, 200, 255, 0.08);
    border: 1px solid rgba(126, 200, 255, 0.14);
    border-radius: 999px;
    color: #7ec8ff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.14em;
}

.twofa-choice-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(126, 200, 255, 0.075);
    border: 1px solid rgba(126, 200, 255, 0.16);
    border-radius: 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.twofa-choice-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #7ec8ff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.twofa-choice-card h1 {
    max-width: 500px;
    margin: 0;
    position: relative;
    z-index: 1;
    color: #eef6ff;
    font-size: 30px;
    font-weight: 720;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.twofa-choice-description {
    max-width: 500px;
    margin: 15px 0 0;
    position: relative;
    z-index: 1;
    color: #8295a9;
    font-size: 15px;
    line-height: 1.65;
}

.twofa-choice-info {
    margin-top: 30px;
    padding: 21px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 19px;
    background: rgba(6, 13, 20, 0.42);
    border: 1px solid rgba(126, 200, 255, 0.085);
    border-radius: 17px;
}

.twofa-choice-info-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.twofa-choice-check {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    background: rgba(98, 210, 155, 0.09);
    border: 1px solid rgba(98, 210, 155, 0.19);
    border-radius: 50%;
    color: #62d29b;
    font-size: 12px;
    font-weight: 800;
}

.twofa-choice-info-item > div {
    min-width: 0;
}

.twofa-choice-info-item strong {
    display: block;
    margin-bottom: 4px;
    color: #eef6ff;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.4;
}

.twofa-choice-info-item div span {
    display: block;
    color: #8295a9;
    font-size: 13px;
    line-height: 1.55;
}

.twofa-choice-error {
    margin-top: 20px;
    padding: 13px 15px;
    position: relative;
    z-index: 1;
    background: rgba(255, 100, 100, 0.07);
    border: 1px solid rgba(255, 110, 110, 0.18);
    border-radius: 12px;
    color: #ffb1b1;
    font-size: 13px;
    line-height: 1.5;
}

.twofa-choice-error[hidden] {
    display: none;
}

.twofa-choice-actions {
    margin-top: 28px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.twofa-choice-primary,
.twofa-choice-secondary {
    width: 100%;
    min-height: 52px;
    border-radius: 13px;
    outline: none;
    transition:
        transform 0.16s ease,
        background 0.16s ease,
        border-color 0.16s ease,
        box-shadow 0.16s ease,
        opacity 0.16s ease;
}

.twofa-choice-primary {
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #7ec8ff;
    border: 1px solid #7ec8ff;
    box-shadow:
        0 10px 26px rgba(95, 174, 232, 0.12);
    color: #071b3a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
}

.twofa-choice-primary span:last-child {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.16s ease;
}

.twofa-choice-primary:hover {
    background: #a6d8ff;
    border-color: #a6d8ff;
    transform: translateY(-1px);
}

.twofa-choice-primary:hover span:last-child {
    transform: translateX(3px);
}

.twofa-choice-primary:active {
    transform: translateY(0);
}

.twofa-choice-secondary {
    padding: 0 18px;
    background: transparent;
    border: 1px solid rgba(126, 200, 255, 0.15);
    color: #a6d8ff;
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
}

.twofa-choice-secondary:hover {
    background: rgba(126, 200, 255, 0.045);
    border-color: rgba(126, 200, 255, 0.30);
}

.twofa-choice-secondary:active {
    transform: scale(0.995);
}

.twofa-choice-primary:focus-visible,
.twofa-choice-secondary:focus-visible {
    box-shadow:
        0 0 0 3px rgba(126, 200, 255, 0.15);
}

.twofa-choice-secondary:disabled {
    opacity: 0.48;
    cursor: wait;
    transform: none;
}

.twofa-choice-note {
    margin: 19px auto 0;
    max-width: 430px;
    position: relative;
    z-index: 1;
    color: #65798c;
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

@media (max-width: 640px) {
    .twofa-choice-page {
        align-items: flex-start;
        padding: 16px 12px 30px;
    }

    .twofa-choice-card {
        padding: 27px 20px;
        border-radius: 20px;
    }

    .twofa-choice-badge {
        margin-bottom: 19px;
    }

    .twofa-choice-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 21px;
        border-radius: 16px;
    }

    .twofa-choice-icon svg {
        width: 29px;
        height: 29px;
    }

    .twofa-choice-card h1 {
        font-size: 25px;
        line-height: 1.23;
    }

    .twofa-choice-description {
        margin-top: 13px;
        font-size: 14px;
    }

    .twofa-choice-info {
        margin-top: 25px;
        padding: 17px;
        gap: 17px;
    }

    .twofa-choice-actions {
        margin-top: 23px;
    }

    .twofa-choice-primary,
    .twofa-choice-secondary {
        min-height: 50px;
    }
}

@media (max-width: 380px) {
    .twofa-choice-card {
        padding: 24px 17px;
    }

    .twofa-choice-card h1 {
        font-size: 23px;
    }

    .twofa-choice-info {
        padding: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .twofa-choice-primary,
    .twofa-choice-secondary,
    .twofa-choice-primary span:last-child {
        transition: none;
    }
}

/* ===== setup-2fa.css ===== */
:root {
    --vladio-bg: #060d14;
    --vladio-bg-soft: #09131d;

    --vladio-blue: #7ec8ff;
    --vladio-blue-light: #a6d8ff;
    --vladio-blue-strong: #5faee8;

    --vladio-navy: #071b3a;
    --vladio-white: #ffffff;

    --vladio-text: #eef6ff;
    --vladio-text-soft: #91a4b8;
    --vladio-text-muted: #64778a;

    --vladio-border: rgba(166, 216, 255, 0.16);
    --vladio-border-focus: rgba(126, 200, 255, 0.75);

    --vladio-input: rgba(255, 255, 255, 0.025);
    --vladio-input-focus: rgba(126, 200, 255, 0.05);

    --vladio-error: #ff6b6b;
    --vladio-success: #62d29b;
}

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(126, 200, 255, 0.045),
            transparent 38%
        ),
        var(--vladio-bg);

    color: var(--vladio-text);
}

.setup-2fa-page {
    width: 100%;
    min-height: 100vh;

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

    padding: 48px 24px;
}

.setup-2fa-main {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.setup-2fa-inner {
    width: 100%;
    max-width: 512px;

    margin: 0 auto;
}

.setup-2fa-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 42px;
}

.setup-2fa-logo {
    color: var(--vladio-blue);

    text-decoration: none;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.setup-2fa-step {
    display: block;

    margin-bottom: 16px;

    color: var(--vladio-blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.setup-2fa-heading {
    margin-bottom: 40px;
}

.setup-2fa-heading h1 {
    margin:
        0
        0
        12px;

    color: var(--vladio-text);

    font-size: 42px;
    font-weight: 750;

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.setup-2fa-heading p {
    margin: 0;

    color: var(--vladio-text-soft);

    font-size: 15px;

    line-height: 1.6;
}

.setup-2fa-progress {
    width: 100%;
    height: 4px;

    margin-bottom: 40px;

    overflow: hidden;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.06);
}

.setup-2fa-progress-fill {
    width: 100%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            var(--vladio-blue),
            var(--vladio-blue-strong)
        );
}

.setup-2fa-card {
    width: 100%;

    padding: 24px;

    border:
        1px solid
        var(--vladio-border);

    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.18);
}

.setup-2fa-section {
    margin-bottom: 28px;
}

.setup-2fa-section:last-child {
    margin-bottom: 0;
}

.setup-2fa-section-title {
    margin-bottom: 9px;

    color: var(--vladio-text);

    font-size: 13px;
    font-weight: 750;

    line-height: 1.4;
}

.setup-2fa-section-text {
    margin: 0;

    color: var(--vladio-text-soft);

    font-size: 13px;

    line-height: 1.6;
}

.setup-2fa-apps {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 13px;
}

.setup-2fa-app {
    padding:
        6px
        9px;

    border:
        1px solid
        rgba(166, 216, 255, 0.12);

    border-radius: 7px;

    color: var(--vladio-text-muted);

    font-size: 10px;
    font-weight: 650;
}

.setup-2fa-qr-container {
    width: 250px;
    height: 250px;

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

    margin:
        20px
        auto
        18px;

    padding: 14px;

    border:
        1px solid
        var(--vladio-border);

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.2);
}

#qrcode {
    width: 220px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#qrcode canvas,
#qrcode img {
    display: block;

    width: 220px !important;
    height: 220px !important;
}

.setup-2fa-manual {
    margin-top: 15px;
}

.setup-2fa-manual-label {
    display: block;

    margin-bottom: 7px;

    color: var(--vladio-text-muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.03em;
}

.setup-2fa-secret {
    width: 100%;

    padding:
        12px
        14px;

    border:
        1px solid
        rgba(166, 216, 255, 0.12);

    border-radius: 10px;

    background:
        var(--vladio-input);

    color: var(--vladio-blue-light);

    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;

    font-size: 12px;

    line-height: 1.5;

    text-align: center;

    word-break: break-all;

    user-select: all;
}

.setup-2fa-code-label {
    display: block;

    margin-bottom: 9px;

    color: var(--vladio-text-soft);

    font-size: 11px;
    font-weight: 700;
}

.setup-2fa-code {
    width: 100%;
    height: 56px;

    padding:
        0
        16px;

    border:
        1px solid
        var(--vladio-border);

    border-radius: 12px;

    outline: none;

    background:
        var(--vladio-input);

    color:
        var(--vladio-text);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 24px;
    font-weight: 650;

    line-height: 56px;

    letter-spacing: 0.38em;

    text-align: center;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.setup-2fa-code::placeholder {
    color:
        var(--vladio-text-muted);

    opacity: 1;
}

.setup-2fa-code:hover {
    border-color:
        rgba(166, 216, 255, 0.26);
}

.setup-2fa-code:focus {
    border-color:
        var(--vladio-border-focus);

    background:
        var(--vladio-input-focus);

    box-shadow:
        0 0 0 4px
        rgba(126, 200, 255, 0.08);
}

.setup-2fa-error {
    display: none;

    margin-top: 12px;

    padding:
        12px
        14px;

    border:
        1px solid
        rgba(255, 107, 107, 0.3);

    border-radius: 10px;

    background:
        rgba(255, 107, 107, 0.08);

    color:
        var(--vladio-error);

    font-size: 12px;

    line-height: 1.5;
}

.setup-2fa-actions {
    margin-top: 22px;
}

.setup-2fa-submit {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        0
        20px;

    border: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #7ec8ff,
            #5f9fda
        );

    color:
        #071b3a;

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.setup-2fa-submit:hover:not(:disabled) {
    transform:
        translateY(-1px);

    box-shadow:
        0 12px 30px
        rgba(126, 200, 255, 0.15);
}

.setup-2fa-submit:active:not(:disabled) {
    transform:
        translateY(0);
}

.setup-2fa-submit:disabled {
    opacity: 0.45;

    cursor: not-allowed;
}

.setup-2fa-submit-arrow {
    font-size: 20px;
    font-weight: 500;
}

.setup-2fa-security {
    margin-top: 18px;

    color:
        var(--vladio-text-muted);

    font-size: 10px;

    line-height: 1.5;

    text-align: center;
}

@media (max-width: 700px) {

    .setup-2fa-page {
        align-items: flex-start;

        padding:
            32px
            20px;
    }

    .setup-2fa-inner {
        max-width: 100%;
    }

    .setup-2fa-heading h1 {
        font-size: 36px;
    }
}

@media (max-width: 520px) {

    .setup-2fa-page {
        padding:
            24px
            16px;
    }

    .setup-2fa-top {
        margin-bottom: 36px;
    }

    .setup-2fa-heading {
        margin-bottom: 32px;
    }

    .setup-2fa-heading h1 {
        font-size: 32px;
    }

    .setup-2fa-card {
        padding: 18px;
    }

    .setup-2fa-qr-container {
        width: 240px;
        height: 240px;
    }

    #qrcode,
    #qrcode canvas,
    #qrcode img {
        width: 210px !important;
        height: 210px !important;
    }

    .setup-2fa-code {
        height: 54px;

        font-size: 22px;
    }
}

/* ===== biometric-complete-mobile.css ===== */
:root {
    --bg: #060d14;
    --panel: #0b1722;

    --blue: #7ec8ff;
    --blue-light: #a6d8ff;
    --blue-strong: #5faee8;

    --navy: #071b3a;

    --text: #eef6ff;
    --muted: #8295a9;

    --border:
        rgba(166, 216, 255, 0.14);

    --success: #62d29b;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;

    min-width: 320px;
    min-height: 100%;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(126, 200, 255, 0.09),
            transparent 34%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    -webkit-font-smoothing:
        antialiased;
}

.complete-page {
    width: 100%;

    min-height: 100vh;

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

    padding:
        30px 18px;
}

.complete-card {
    width: min(
        460px,
        100%
    );

    padding:
        34px 27px
        30px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(11, 23, 34, 0.98),
            rgba(7, 17, 27, 0.96)
        );

    box-shadow:
        0 30px 90px
        rgba(0, 0, 0, 0.3);
}

.complete-brand {
    margin-bottom: 30px;

    color: var(--blue-light);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.18em;
}

.complete-icon {
    width: 82px;
    height: 82px;

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

    margin-bottom: 27px;

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            rgba(98, 210, 155, 0.12),
            rgba(98, 210, 155, 0.035)
        );

    border:
        1px solid
        rgba(98, 210, 155, 0.22);

    color: var(--success);

    box-shadow:
        0 0 35px
        rgba(98, 210, 155, 0.06);
}

.complete-icon svg {
    width: 45px;
    height: 45px;

    fill: none;

    stroke: currentColor;

    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.complete-eyebrow {
    margin-bottom: 11px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.17em;
}

.complete-card h1 {
    margin: 0;

    color: var(--text);

    font-size: 29px;
    line-height: 1.16;

    font-weight: 750;

    letter-spacing: -0.025em;
}

.complete-card > p {
    margin:
        15px 0
        0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.65;
}

.complete-status {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 27px;

    padding: 15px;

    border:
        1px solid
        rgba(98, 210, 155, 0.15);

    border-radius: 13px;

    background:
        rgba(98, 210, 155, 0.045);
}

.status-dot {
    width: 9px;
    height: 9px;

    flex: 0 0 9px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 13px
        rgba(98, 210, 155, 0.55);
}

.complete-status strong {
    display: block;

    color: var(--text);

    font-size: 12px;
    font-weight: 700;
}

.complete-status span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}

.complete-button {
    width: 100%;

    min-height: 53px;

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

    margin-top: 24px;

    padding:
        0 20px;

    border:
        1px solid
        rgba(126, 200, 255, 0.2);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            var(--blue-light),
            var(--blue)
        );

    color: var(--navy);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 14px 35px
        rgba(126, 200, 255, 0.1);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.complete-button:active {
    transform:
        scale(0.985);
}

.complete-security {
    margin-top: 22px;

    padding-top: 19px;

    border-top:
        1px solid var(--border);

    color: #64778a;

    font-size: 10px;
    line-height: 1.55;

    text-align: center;
}

.complete-footer {
    margin-top: 22px;

    color: #526577;

    font-size: 9px;

    letter-spacing: 0.08em;
}

@media (max-width: 500px) {

    .complete-page {
        justify-content: flex-start;

        padding:
            28px 16px
            35px;
    }

    .complete-card {
        padding:
            30px 23px
            27px;

        border-radius: 19px;
    }

    .complete-brand {
        margin-bottom: 34px;
    }

    .complete-icon {
        width: 76px;
        height: 76px;

        margin-bottom: 25px;

        border-radius: 21px;
    }

    .complete-icon svg {
        width: 41px;
        height: 41px;
    }

    .complete-card h1 {
        font-size: 27px;
    }

    .complete-card > p {
        font-size: 13px;
    }
}
