:root {
    /* Official FoodConnect brand colors */
    --fc-orange: #f58220;
    --fc-orange-dark: #dc6810;
    --fc-orange-soft: #fff4e8;
    --fc-orange-border: #ffd2ad;

    --fc-green: #43b047;

    --fc-dark: #34454d;
    --fc-heading: #2f4149;
    --fc-text: #455a64;
    --fc-muted: #71828a;

    --fc-background: #fffaf5;
    --fc-surface: #ffffff;
    --fc-input-background: #fbfcfc;

    --fc-border: #e5e9eb;
    --fc-border-dark: #d6dde0;

    --fc-success: #15803d;
    --fc-success-background: #f0fdf4;
    --fc-success-border: #bbf7d0;

    --fc-error: #dc2626;
    --fc-error-background: #fef2f2;
    --fc-error-border: #fecaca;

    --fc-shadow:
        0 22px 55px rgba(52, 69, 77, 0.10);

    --fc-shadow-orange:
        0 12px 28px rgba(245, 130, 32, 0.24);

    --radius-large: 24px;
    --radius-medium: 15px;
    --radius-small: 10px;
}

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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--fc-text);

    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(245, 130, 32, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fff6ed 0%,
            #fffaf5 38%,
            #ffffff 100%
        );
}

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.brand-food {
    color: var(--fc-orange);
}

.brand-connect {
    color: var(--fc-green);
}

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

.partner-header {
    padding-left: 90px; 
    width: min(1180px, calc(100% - 30px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;

    line-height: 0;
}

.foodconnect-logo {
    display: block;
    width: 245px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 2px;

    color: var(--fc-muted);
    font-size: 14px;
    font-weight: 600;

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

.back-link i {
    color: var(--fc-orange);
}

.back-link:hover {
    color: var(--fc-orange);
    transform: translateX(-3px);
}

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

.partner-page {
    width: min(1180px, calc(100% - 40px));
    margin: 24px auto 64px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(520px, 1.08fr);

    gap: 62px;
    align-items: start;
}

/* =========================================================
   INTRODUCTION
   ========================================================= */

.partner-intro {
    position: sticky;
    top: 28px;

    padding: 34px 0;
}

.intro-badge {
    width: fit-content;
    margin-bottom: 24px;
    padding: 10px 16px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--fc-dark);
    font-size: 13px;
    font-weight: 700;

    background: var(--fc-orange-soft);
    border: 1px solid var(--fc-orange-border);
    border-radius: 999px;
}

.intro-badge > i {
    color: var(--fc-orange);
}

.partner-intro h1 {
    max-width: 640px;

    color: var(--fc-heading);

    font-size:
        clamp(
            42px,
            5vw,
            66px
        );

    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -3px;
}

.brand-heading {
    display: block;
    margin-top: 9px;
}

.intro-description {
    max-width: 590px;
    margin-top: 24px;

    color: var(--fc-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* =========================================================
   BENEFITS
   ========================================================= */

.benefits {
    margin-top: 34px;

    display: grid;
    gap: 14px;
}

.benefit-card {
    padding: 17px;

    display: flex;
    align-items: flex-start;
    gap: 15px;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--fc-border);
    border-radius: var(--radius-medium);

    box-shadow:
        0 9px 25px rgba(52, 69, 77, 0.04);

    backdrop-filter: blur(8px);

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

.benefit-card:hover {
    transform: translateY(-2px);
    border-color: var(--fc-orange-border);

    box-shadow:
        0 13px 30px rgba(52, 69, 77, 0.07);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;

    display: grid;
    place-items: center;

    color: var(--fc-orange);
    font-size: 17px;

    background: var(--fc-orange-soft);
    border-radius: 13px;
}

.benefit-content h3 {
    margin-bottom: 6px;

    color: var(--fc-heading);
    font-size: 15px;
    font-weight: 700;
}

.benefit-content p {
    color: var(--fc-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   APPLICATION PROCESS
   ========================================================= */

.application-process {
    margin-top: 34px;
    padding: 22px;

    background: var(--fc-dark);
    border-radius: var(--radius-medium);

    box-shadow:
        0 17px 36px rgba(52, 69, 77, 0.18);
}

.process-header {
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    gap: 9px;

    color: white;
}

.process-header i {
    color: var(--fc-orange);
}

.process-header p {
    font-size: 14px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    align-items: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    text-align: center;
}

.process-number {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

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

    background: var(--fc-orange);
    border-radius: 50%;

    box-shadow:
        0 5px 13px rgba(0, 0, 0, 0.20);
}

.process-label {
    color: #dbe1e4;
    font-size: 10px;
    font-weight: 600;
}

.process-line {
    height: 1px;
    flex: 1;

    margin:
        0
        9px
        17px;

    background: #66757c;
}

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

.application-card {
    overflow: hidden;

    background: var(--fc-surface);
    border: 1px solid var(--fc-border);
    border-radius: var(--radius-large);

    box-shadow: var(--fc-shadow);
}

.form-header {
    padding: 28px 30px;

    display: flex;
    align-items: center;
    gap: 15px;

    background: #fff8f1;
    border-bottom: 1px solid var(--fc-border);
}

.form-header-icon {
    width: 49px;
    height: 49px;
    flex-shrink: 0;

    display: grid;
    place-items: center;

    color: white;
    font-size: 19px;

    background: var(--fc-orange);
    border-radius: 14px;

    box-shadow:
        0 10px 23px rgba(245, 130, 32, 0.24);
}

.form-header-content h2 {
    color: var(--fc-heading);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.form-header-content p {
    margin-top: 5px;

    color: var(--fc-muted);
    font-size: 13px;
    line-height: 1.5;
}

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

#partnerForm {
    padding: 30px;
}

.section-heading {
    margin-bottom: 22px;

    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.section-number {
    width: 33px;
    height: 33px;
    flex-shrink: 0;

    display: grid;
    place-items: center;

    color: white;
    font-size: 13px;
    font-weight: 700;

    background: var(--fc-orange);
    border-radius: 10px;
}

.section-heading h3 {
    color: var(--fc-heading);
    font-size: 17px;
    font-weight: 700;
}

.section-heading p {
    margin-top: 4px;

    color: var(--fc-muted);
    font-size: 12px;
    line-height: 1.5;
}

.form-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 18px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: inline-block;
    margin-bottom: 8px;

    color: var(--fc-dark);
    font-size: 13px;
    font-weight: 600;
}

.input-wrapper {
    position: relative;
}

.input-wrapper > i {
    position: absolute;
    top: 50%;
    left: 15px;

    color: var(--fc-orange);
    font-size: 14px;

    transform: translateY(-50%);
    pointer-events: none;
}

.phone-prefix {
    position: absolute;
    top: 50%;
    left: 43px;

    color: var(--fc-heading);
    font-size: 14px;
    font-weight: 600;

    transform: translateY(-50%);
    pointer-events: none;
}

.input-wrapper.phone-input input {
    padding-left: 82px;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    height: 49px;

    padding:
        0
        44px;

    color: var(--fc-heading);
    font-size: 14px;

    background: var(--fc-input-background);
    border: 1px solid var(--fc-border);
    border-radius: var(--radius-small);
    outline: none;

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

.input-wrapper input::placeholder {
    color: #a0adb3;
}

.input-wrapper select {
    padding-right: 18px;
    cursor: pointer;
}

.input-wrapper input:hover,
.input-wrapper select:hover {
    border-color: var(--fc-border-dark);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    background: white;
    border-color: var(--fc-orange);

    box-shadow:
        0 0 0 4px rgba(245, 130, 32, 0.11);
}

.password-wrapper input {
    padding-right: 49px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 11px;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    color: #8b989e;

    background: transparent;
    border-radius: 8px;
    cursor: pointer;

    transform: translateY(-50%);

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

.toggle-password:hover {
    color: var(--fc-orange);
    background: var(--fc-orange-soft);
}

.form-divider {
    height: 1px;
    margin: 29px 0;

    background: var(--fc-border);
}

/* =========================================================
   AGREEMENT
   ========================================================= */

.agreement {
    margin-top: 26px;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    color: var(--fc-muted);
    font-size: 12px;
    line-height: 1.6;

    cursor: pointer;
}

.agreement input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    flex-shrink: 0;

    display: grid;
    place-items: center;

    color: transparent;
    font-size: 11px;

    background: white;
    border: 1px solid var(--fc-border-dark);
    border-radius: 6px;

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

.agreement:hover .custom-checkbox {
    border-color: var(--fc-orange);
}

.agreement input:focus-visible + .custom-checkbox {
    box-shadow:
        0 0 0 4px rgba(245, 130, 32, 0.12);
}

.agreement input:checked + .custom-checkbox {
    color: white;
    background: var(--fc-orange);
    border-color: var(--fc-orange);
}

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

.form-message {
    display: none;

    margin-top: 18px;
    padding: 13px 14px;

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

    border-radius: 10px;
}

.form-message.success {
    display: block;

    color: var(--fc-success);
    background: var(--fc-success-background);
    border: 1px solid var(--fc-success-border);
}

.form-message.error {
    display: block;

    color: var(--fc-error);
    background: var(--fc-error-background);
    border: 1px solid var(--fc-error-border);
}

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

.submit-button {
    width: 100%;
    min-height: 54px;
    margin-top: 20px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: white;
    font-size: 14px;
    font-weight: 700;

    background: var(--fc-orange);
    border-radius: 13px;
    cursor: pointer;

    box-shadow: var(--fc-shadow-orange);

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

.submit-button:hover {
    background: var(--fc-orange-dark);
    transform: translateY(-2px);

    box-shadow:
        0 16px 32px rgba(245, 130, 32, 0.30);
}

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

.submit-button:focus-visible {
    outline: none;

    box-shadow:
        0 0 0 4px rgba(245, 130, 32, 0.16),
        var(--fc-shadow-orange);
}

.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.68;
    transform: none;
}

/* =========================================================
   LOGIN AND FOOTER
   ========================================================= */

.login-text {
    margin-top: 18px;

    color: var(--fc-muted);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.login-text a {
    color: var(--fc-orange);
    font-weight: 700;
}

.login-text a:hover {
    color: var(--fc-orange-dark);
    text-decoration: underline;
}

.partner-footer {
    padding:
        0
        20px
        30px;

    color: var(--fc-muted);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

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

@media (max-width: 980px) {
    .partner-page {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .partner-intro {
        position: static;
        padding-bottom: 0;
    }

    .partner-intro h1 {
        max-width: 760px;
    }

    .intro-description {
        max-width: 720px;
    }

    .benefits {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }

    .benefit-card {
        flex-direction: column;
    }
}

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

@media (max-width: 760px) {
    .partner-header {
        width: min(100% - 28px, 1180px);
        min-height: 82px;
        padding-left: 0px; /* ADD THIS - match sa form card */
    }

    .foodconnect-logo {
        width: 185px;
    }

    .back-link span {
        display: none;
    }

    .back-link {
        width: 42px;
        height: 42px;

        justify-content: center;

        padding: 0;

        background: white;
        border: 1px solid var(--fc-border);
        border-radius: 12px;
    }

    .partner-page {
        width: min(100% - 28px, 1180px);
        margin-top: 8px;
    }

    .partner-intro {
        padding-top: 16px;
    }

    .partner-intro h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

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

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

    .benefit-card {
        flex-direction: row;
    }

    .application-card {
        border-radius: 19px;
    }

    .form-header {
        padding: 23px 20px;
    }

    #partnerForm {
        padding: 23px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }
}

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

@media (max-width: 430px) {
    .partner-header {
        padding-left: 0px; /* ADD THIS - same lang */
    }

    .partner-intro h1 {
        font-size: 34px;
        letter-spacing: -1.7px;
    }

    .intro-badge {
        padding: 9px 13px;
        font-size: 12px;
    }

    .application-process {
        padding: 18px 12px;
    }

    .process-line {
        margin:
            0
            4px
            17px;
    }

    .process-label {
        font-size: 9px;
    }

    .form-header-icon {
        width: 43px;
        height: 43px;
    }

    .form-header-content h2 {
        font-size: 20px;
    }

    .form-header-content p {
        font-size: 12px;
    }

    .section-heading h3 {
        font-size: 16px;
    }
}

/* =========================================================
   PARTNER VERIFICATION SUCCESS
   ========================================================= */

.verification-success-panel {
    padding: 34px 8px 10px;

    text-align: center;
}

.verification-success-panel[hidden] {
    display: none;
}

.verification-success-icon {
    width: 78px;
    height: 78px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    color: #f58220;
    background: #fff1e5;

    font-size: 31px;
}

.verification-success-kicker {
    margin: 0 0 7px;

    color: #43b047;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.verification-success-panel h2 {
    margin: 0;

    color: #2f4149;

    font-size: 28px;
}

.verification-success-description {
    margin: 16px 0 6px;

    color: #71828a;

    font-size: 14px;
}

.submitted-partner-email {
    display: block;

    margin-bottom: 17px;

    color: #2f4149;

    font-size: 16px;
    overflow-wrap: anywhere;
}

.verification-success-note {
    max-width: 470px;

    margin: 0 auto 22px;

    color: #60727a;

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

.verification-action-button {
    width: 100%;

    margin-top: 4px;
}

.partner-portal-link {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 12px;
    padding: 12px 18px;

    border: 1px solid #f58220;
    border-radius: 12px;

    color: #f58220;
    background: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

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

.partner-portal-link:hover {
    color: #ffffff;
    background: #f58220;
}

.register-another-button {
    margin-top: 18px;
    padding: 5px;

    border: 0;

    color: #71828a;
    background: transparent;

    font: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}

.register-another-button:hover {
    color: #f58220;
    text-decoration: underline;
}



/* FC_THEME_PARTNER_APPLY_CSS_V5 */
html[data-theme="dark"] body { background:#0f1115!important; color:#f5f7fa!important; }
html[data-theme="dark"] :is(.auth-card,.login-card,.signup-card,.form-card,.application-card,.wizard-card,.card,.modal-content) {
  background:#181b20!important; color:#f5f7fa!important; border-color:#30343b!important;
}
html[data-theme="dark"] :is(input,select,textarea) { background:#20242a!important; color:#f5f7fa!important; border-color:#343942!important; }
html[data-theme="dark"] :is(h1,h2,h3,h4,label,strong) { color:#f5f7fa; }
html[data-theme="dark"] :is(p,.helper-text,.subtitle,.muted) { color:#a4acb9; }

/* FoodConnect official brand logo standard */
img[src*="logofoodconnect-Photoroom.png"] {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

/* Keep the logo balanced in smaller navigation areas */
.sidebar img[src*="logofoodconnect-Photoroom.png"],
.admin-sidebar img[src*="logofoodconnect-Photoroom.png"] {
    width: 42px;
    height: 42px;
}

.footer img[src*="logofoodconnect-Photoroom.png"] {
    width: 45px;
    height: 45px;
}



/* =========================================================
   OTHER RESTAURANT TYPE FIELD
   ========================================================= */

.other-cuisine-group[hidden] {
    display: none;
}

/* =========================================================
   THEME FIXES (Light/Dark compatible)
   ========================================================= */

html[data-theme="dark"] body,
body[data-theme="dark"] {
    color: #e5e7eb;
    background:
        radial-gradient(circle at 8% 8%, rgba(245,130,32,.12), transparent 28%),
        linear-gradient(135deg, #0f1418 0%, #111827 100%);
}

html[data-theme="dark"] .partner-intro h1,
body[data-theme="dark"] .partner-intro h1,
html[data-theme="dark"] .form-header-content h2,
body[data-theme="dark"] .form-header-content h2,
html[data-theme="dark"] .section-heading h3,
body[data-theme="dark"] .section-heading h3,
html[data-theme="dark"] .benefit-content h3,
body[data-theme="dark"] .benefit-content h3 {
    color: #f8fafc;
}

html[data-theme="dark"] .intro-description,
html[data-theme="dark"] .benefit-content p,
html[data-theme="dark"] .form-header-content p,
html[data-theme="dark"] .section-heading p {
    color: #aab7c4;
}

html[data-theme="dark"] .benefit-card,
body[data-theme="dark"] .benefit-card {
    background: rgba(30, 41, 59, .78);
    border-color: rgba(255,255,255,.12);
}

html[data-theme="dark"] .application-card,
body[data-theme="dark"] .application-card {
    background: #161b22;
    border-color: rgba(255,255,255,.12);
}

html[data-theme="dark"] .form-header,
body[data-theme="dark"] .form-header {
    background: #1f2937;
}

html[data-theme="dark"] .form-group label,
body[data-theme="dark"] .form-group label {
    color: #f1f5f9;
}

html[data-theme="dark"] .input-wrapper input,
html[data-theme="dark"] .input-wrapper select,
body[data-theme="dark"] .input-wrapper input,
body[data-theme="dark"] .input-wrapper select {
    color: #f8fafc;
    background: #202832;
    border-color: rgba(255,255,255,.12);
}

html[data-theme="dark"] .input-wrapper input::placeholder,
body[data-theme="dark"] .input-wrapper input::placeholder {
    color: #94a3b8;
}

html[data-theme="dark"] .input-wrapper input:focus,
html[data-theme="dark"] .input-wrapper select:focus,
body[data-theme="dark"] .input-wrapper input:focus,
body[data-theme="dark"] .input-wrapper select:focus {
    background: #26313d;
}

html[data-theme="dark"] .phone-prefix,
body[data-theme="dark"] .phone-prefix {
    color: #cbd5e1;
}

/* =========================================================
   SIMPLE PARTNER PAGE HEADER
   Clean FoodConnect logo + Back to Homepage only
   ========================================================= */
.partner-header {
    width: 100%;
    min-height: 78px;
    margin: 0;
    padding: 12px clamp(24px, 5vw, 88px);
    background: var(--fc-surface);
    border-bottom: 1px solid var(--fc-border);
}

.partner-header .foodconnect-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

html[data-theme="dark"] .partner-header,
body[data-theme="dark"] .partner-header {
    background: #12161b;
    border-bottom-color: #2f353d;
}

html[data-theme="dark"] .partner-header .back-link,
body[data-theme="dark"] .partner-header .back-link {
    color: #aab4bf;
}

@media (max-width: 760px) {
    .partner-header {
        width: 100%;
        min-height: 70px;
        padding: 10px 16px;
    }

    .partner-header .foodconnect-logo {
        width: 46px;
        height: 46px;
    }

    .partner-header .back-link {
        background: var(--fc-surface);
    }

    html[data-theme="dark"] .partner-header .back-link,
    body[data-theme="dark"] .partner-header .back-link {
        background: #1b2026;
        border-color: #343a43;
    }
}

/* =========================================================
   HEADER BRAND NAME
   Simple FoodConnect wordmark beside official logo
   ========================================================= */
.partner-header .brand-logo-link {
    gap: 10px;
}

.partner-header .header-brand-name {
    display: inline-flex;
    align-items: baseline;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.35px;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .partner-header .brand-logo-link {
        gap: 8px;
    }

    .partner-header .header-brand-name {
        font-size: 18px;
    }
}

/* =========================================================
   PARTNER VERIFICATION RESEND REQUEST
   Owner requests only; administrator authorizes the actual email resend.
   ========================================================= */

.verification-request-help {
    margin-top: 22px;
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    border: 1px solid #e8ecef;
    border-radius: 14px;
    background: #fbfcfc;
}

.verification-request-help[hidden] {
    display: none;
}

.verification-request-help-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #f58220;
    background: #fff1e5;
    font-size: 18px;
}

.verification-request-help-copy {
    min-width: 0;
}

.verification-request-help h3 {
    margin: 0 0 4px;
    color: #2f4149;
    font-size: 14px;
}

.verification-request-help p {
    margin: 0;
    color: #71828a;
    font-size: 12px;
    line-height: 1.6;
}

.verification-request-toggle {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #f58220;
    border-radius: 10px;
    color: #f58220;
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.verification-request-toggle:hover,
.verification-request-toggle:focus-visible {
    color: #ffffff;
    background: #f58220;
}

.verification-request-panel {
    grid-column: 1 / -1;
    padding-top: 14px;
    border-top: 1px solid #e8ecef;
}

.verification-request-panel[hidden] {
    display: none;
}

.verification-request-panel > label {
    display: block;
    margin-bottom: 7px;
    color: #455a64;
    font-size: 12px;
    font-weight: 700;
}

.verification-request-submit {
    margin-top: 12px;
}

.verification-request-submit.is-submitted,
.verification-action-button.is-submitted {
    background: #667085;
    box-shadow: none;
}

html[data-theme="dark"] .verification-request-help,
body[data-theme="dark"] .verification-request-help {
    border-color: #343942;
    background: #1b1f24;
}

html[data-theme="dark"] .verification-request-help h3,
body[data-theme="dark"] .verification-request-help h3,
html[data-theme="dark"] .verification-request-panel > label,
body[data-theme="dark"] .verification-request-panel > label {
    color: #f5f7fa;
}

html[data-theme="dark"] .verification-request-help p,
body[data-theme="dark"] .verification-request-help p {
    color: #b6c0c8;
}

html[data-theme="dark"] .verification-request-panel,
body[data-theme="dark"] .verification-request-panel {
    border-top-color: #343942;
}

@media (max-width: 720px) {
    .verification-request-help {
        grid-template-columns: auto 1fr;
    }

    .verification-request-toggle {
        grid-column: 1 / -1;
        width: 100%;
    }
}


/* =========================================================
   PARTNER VERIFICATION -> ONBOARDING CONTINUATION
   ========================================================= */

.verification-continue-link {
    margin-top: 8px;
    text-decoration: none;
}

.verification-continue-link:hover,
.verification-continue-link:focus-visible {
    color: #ffffff;
    text-decoration: none;
}

.verification-secondary-button {
    width: 100%;
    min-height: 50px;
    margin-top: 12px;
    padding: 12px 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid #f58220;
    border-radius: 12px;

    color: #f58220;
    background: #ffffff;

    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;

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

.verification-secondary-button:hover:not(:disabled),
.verification-secondary-button:focus-visible:not(:disabled) {
    color: #ffffff;
    background: #f58220;
}

.verification-secondary-button:disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

html[data-theme="dark"] .verification-secondary-button,
body[data-theme="dark"] .verification-secondary-button {
    background: #171b20;
}

html[data-theme="dark"] .verification-secondary-button:hover:not(:disabled),
html[data-theme="dark"] .verification-secondary-button:focus-visible:not(:disabled),
body[data-theme="dark"] .verification-secondary-button:hover:not(:disabled),
body[data-theme="dark"] .verification-secondary-button:focus-visible:not(:disabled) {
    background: #f58220;
}
