.pill strong {
    color: #fff;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242,101,34,0.15);
    border: 1px solid rgba(242,101,34,0.4);
    color: #FFB98A;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.dot-green {
    background: #10B981;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column
}
.psp-v2-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(0, 0, 0, .08);
    color: #0F172A;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    font-family: inherit;
    line-height: 1;
    text-decoration: none;
}

    .psp-v2-close:hover {
        background: #fff;
        transform: scale(1.05);
        color: #0F172A;
        text-decoration: none;
    }
#global-nav ul li a, #global-nav ul li a:hover {
    text-decoration: none;
}

html {
    font-size: 16px;
}

.form label.required:after {
    float: none !important;
}

.form h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--ink);
}

.form .step-sub {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 24px;
}

    .form .step-sub strong {
        color: var(--sc-orange);
        font-weight: 600;
    }

.form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-transform: uppercase;
    margin-bottom: 6px;
}

    .form label .req {
        color: var(--sc-orange);
    }

    .form label .label-optional {
        color: var(--muted);
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        margin-left: 4px;
        font-size: 11px;
    }

.form input, .sc-prov-signup-v2 .form select, .sc-prov-signup-v2 .form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--line-dark);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s;
}

    .form input:focus, .form select:focus, .form textarea:focus {
        outline: none;
        border-color: var(--sc-orange);
    }

    .form input::placeholder, .form textarea::placeholder {
        color: #94A3B8;
    }

.form textarea {
    min-height: 90px;
    resize: vertical;
    line-height: 1.5;
}

.form .pw-strength {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

    .form .pw-strength .bar {
        flex: 1;
        height: 3px;
        background: var(--line-dark);
        border-radius: 2px;
    }

.form .tos {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin: 14px 0 20px;
}

    .form .tos a {
        color: var(--sc-orange);
        text-decoration: none;
        font-weight: 600;
    }
