/* ==========================================================
   PORTAL AUTH
========================================================== */

:root {
    --portal-primary: #081536;
    --portal-primary-light: #17336d;
    --portal-accent: #ffad17;

    --portal-text: #0d1938;
    --portal-muted: #7d8598;

    --portal-border: #dfe4ef;
    --portal-input: #f8f9fc;

    --portal-white: #ffffff;
    --portal-background: #f4f6fa;
    --portal-soft: #fff8ea;
}


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

* {
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    min-height: 100%;

    margin: 0;
}


body {
    min-height: 100vh;

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

    background: var(--portal-background);

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


a {
    color: inherit;
}



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

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

    display: grid;

    grid-template-columns:
        minmax(420px, 47%)
        minmax(0, 1fr);

    background: var(--portal-white);
}



/* ==========================================================
   LEFT PANEL
========================================================== */

.portal-auth-brand {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    padding:
        52px
        clamp(45px, 6vw, 105px)
        38px;

    background: var(--portal-primary);

    color: var(--portal-white);
}



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

.portal-brand-header {
    display: flex;
    align-items: center;

    gap: 16px;
}


.portal-brand-mark {
    width: 60px;
    height: 60px;

    flex: 0 0 54px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--portal-primary-light);

    color: var(--portal-white);

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


.portal-brand-header strong {
    display: block;

    color: var(--portal-white);

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

    line-height: 1.2;
}


.portal-brand-header small {
    display: block;

    margin-top: 4px;

    color:
        rgba(
            255,
            255,
            255,
            .55
        );

    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}



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

.portal-brand-content {
    margin-top:
        clamp(
            70px,
            10vh,
            120px
        );
}


.portal-brand-content h1 {
    max-width: 430px;

    margin: 0;

    color: var(--portal-white);

    font-size:40px;

    font-weight: 800;

    line-height: 1.05;
}


.portal-brand-line {
    width: 100%;
    max-width: 360px;
    height: 6px;

    display: block;

    margin-top: 10px;

    border-radius: 999px;

    background: var(--portal-accent);
}


.portal-brand-content > p {
    max-width: 360px;

    margin:
        32px 0
        0;

    color:#B2BFE5;

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

    line-height: 1.45;
}



/* ==========================================================
   FEATURES
========================================================== */

.portal-feature-list {
    margin-top: 54px;

    display: flex;
    flex-direction: column;

    gap: 21px;
}


.portal-feature {
    display: flex;
    align-items: center;

    gap: 10px;
}


.portal-feature > span {
    width: 18px;

    flex: 0 0 18px;

    font-size: 13px;
}


.portal-feature p {
    margin: 0;

    color:#CCD9F2;

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

    line-height: 1.35;
}



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

.portal-brand-footer {
    margin-top: auto;

    padding-top: 40px;

    color:
        rgba(
            255,
            255,
            255,
            .35
        );

    font-size: 11px;
}



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

.portal-mobile-welcome {
    display: none;
}



/* ==========================================================
   RIGHT SIDE
========================================================== */

.portal-auth-login {
    min-height: 100vh;

    position: relative;

    display: flex;
    justify-content: center;

    padding:
        120px
        40px
        80px;

    background: var(--portal-white);
}


.portal-login-wrapper {
    width: min(
        100%,
        500px
    );
}



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

.portal-login-heading h2 {
    margin: 0;

    color: var(--portal-text);

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

    line-height: 1.15;
}


.portal-login-heading p {
    margin:
        8px 0
        0;

    color: var(--portal-muted);

    font-size: 13px;

    line-height: 1.4;
}



/* ==========================================================
   ROLE TABS
========================================================== */

.portal-role-tabs {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 4px;

    margin-top: 35px;

    padding: 4px;

    overflow-x: auto;
    overflow-y: hidden;

    border-radius: 9px;

    background: #f7f7fa;

    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;
}


.portal-role-tabs a {
    width: 200px;

    flex: 0 0 200px;

    height: 48px;

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

    border-radius: 7px;

    color: #7d8493;

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

    white-space: nowrap;

    text-decoration: none;
}

.portal-role-tabs {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.portal-role-tabs::-webkit-scrollbar {
    display: none;
}

.portal-role-tabs a.active {
    background: var(--portal-white);

    color: var(--portal-text);

    font-weight: 600;

    box-shadow:
        0 2px 8px
        rgba(
            0,
            0,
            0,
            .08
        );
}



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

.portal-login-form {
    margin-top: 30px;
}


.portal-form-group {
    width: 100%;
}


.portal-form-group +
.portal-form-group {
    margin-top: 22px;
}


.portal-form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--portal-text);

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


/* INPUT */

.portal-form-group input {
    width: 100%;
    height: 50px;

    padding: 0 16px;

    border: 0;
    outline: 0;

    border-radius: 9px;

    background: #e8ecf6;

    color: var(--portal-text);

    font-family: inherit;

    font-size: 13px;

    text-align: left !important;
}


/* PLACEHOLDER */

.portal-form-group input::placeholder {
    color: #aeb5c6;

    text-align: left !important;

    opacity: 1;
}


/* ==========================================================
   INPUT WRAPPER
   WORKS WHEN ICON WRAPPER IS USED
========================================================== */

.portal-input-wrap {
    width: 100%;

    position: relative;
}


.portal-input-wrap input {
    padding:
        0 38px
        0 38px;
}


.portal-input-icon {
    width: 16px;
    height: 16px;

    position: absolute;

    left: 13px;
    top: 50%;

    transform:
        translateY(-50%);

    display: grid;
    place-items: center;

    color: #94a0b7;

    pointer-events: none;
}


.portal-input-icon svg {
    width: 15px;
    height: 15px;

    display: block;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

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



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

.portal-password-toggle {
    width: 34px;
    height: 100%;

    position: absolute;

    top: 0;
    right: 4px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;
    outline: none;

    background: transparent;

    color: #8492aa;

    cursor: pointer;
}


.portal-password-toggle svg {
    width: 16px;
    height: 16px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;
}



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

.portal-login-options {
    width: 100%;

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

    gap: 20px;

    margin-top: 27px;
}


.portal-login-options label {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--portal-muted);

    font-size: 12px;
}


.portal-login-options label input {
    width: 12px;
    height: 12px;

    margin: 0;

    accent-color: var(--portal-primary);
}


.portal-login-options a {
    color: #234bb7;

    font-size: 12px;

    text-decoration: none;
}



/* ==========================================================
   SIGN IN BUTTON
========================================================== */

.portal-signin-button {
    width: 100%;
    height: 52px;

    margin-top: 22px;

    border: 0;
    outline: none;

    border-radius: 8px;

    background: var(--portal-primary);

    color: var(--portal-white);

    font-family: inherit;

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

    cursor: pointer;
}



/* ==========================================================
   ACTIVATE ACCOUNT
========================================================== */

.portal-first-time {
    margin-top: 30px;

    padding-top: 17px;

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

    text-align: center;
}


.portal-first-time > span {
    display: block;

    margin-bottom: 13px;

    color: #9ca3b2;

    font-size: 12px;
}


.portal-activate-button {
    width: 100%;
    height: 48px;

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

    border-radius: 9px;

    background: var(--portal-soft);

    color: var(--portal-text);

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

    text-decoration: none;
}



/* ==========================================================
   SUPPORT
========================================================== */

.portal-support {
    margin:
        37px 0
        0;

    color: #adb3c1;

    font-size: 11px;

    text-align: center;
}


.portal-support span {
    margin: 0 6px;
}



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

.portal-login-footer {
    position: absolute;

    bottom: 35px;
    left: 20px;
    right: 20px;

    color: #c1c6d2;

    font-size: 11px;

    text-align: center;
}



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

@media (max-width: 900px) {

    .portal-auth-page {
        grid-template-columns:
            40%
            60%;
    }


    .portal-auth-brand {
        padding:
            40px 28px
            30px;
    }


    .portal-brand-content h1 {
        font-size: 30px;
    }


    .portal-auth-login {
        padding:
            90px 32px
            70px;
    }
}



/* ==========================================================
   MOBILE LOGIN
   MATCH SCREENSHOT — CARD OVERLAPS NAVY SLIGHTLY
========================================================== */

@media (max-width: 650px) {

    html,
    body {
        width: 100%;
        min-height: 100%;
        margin: 0;
        background: var(--portal-background);
    }

    body {
        overflow-x: hidden;
    }


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

    .portal-auth-page {
        width: 100%;
        min-height: 100vh;
        display: block;
        position: relative;
        overflow-x: hidden;
        background: var(--portal-background);
    }


    /* ======================================================
       NAVY TOP SECTION
    ====================================================== */

    .portal-auth-brand {
        width: 100%;
        min-height: 168px;
        display: block;
        position: relative;
        padding: 28px 16px 42px;
        background: var(--portal-primary);
        color: #ffffff;
    }


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

    .portal-brand-header {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .portal-brand-mark {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        border-radius: 9px;
        background: var(--portal-accent);
        color: var(--portal-primary);
        font-size: 14px;
        font-weight: 800;
    }

    .portal-brand-header strong {
        font-size: 13px;
        font-weight: 700;
    }

    .portal-brand-header small {
        margin-top: 2px;
        font-size: 7px;
    }


    /* ======================================================
       HIDE DESKTOP LEFT CONTENT
    ====================================================== */

    .portal-brand-content,
    .portal-brand-footer {
        display: none;
    }


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

    .portal-mobile-welcome {
        display: block;
        margin-top: 25px;
    }

    .portal-mobile-welcome h2 {
        margin: 0;
        color: #ffffff;
        font-size: 21px;
        font-weight: 700;
        line-height: 1.08;
    }

    .portal-mobile-welcome p {
        margin: 5px 0 0;
        color: rgba(255, 255, 255, .58);
        font-size: 8px;
        line-height: 1.35;
    }


    /* ======================================================
       HIDE DESKTOP RIGHT HEADING
       MOBILE WELCOME IS ALREADY IN THE NAVY AREA
    ====================================================== */

    .portal-login-heading {
        display: none;
    }


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

    .portal-auth-login {
        width: 100%;
        min-height: auto;
        display: block;
        position: relative;
        margin: 0;
        padding: 0 13px 24px;
        background: var(--portal-background);
    }


    /* ======================================================
       WHITE CARD
       -23PX MAKES IT OVERLAP THE NAVY SECTION
    ====================================================== */

    .portal-login-wrapper {
        width: 100%;
        max-width: none;
        position: relative;
        z-index: 10;
        margin-top: -23px;
        padding: 14px 14px 18px;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 5px 16px rgba(8, 21, 54, .10);
    }


    /* ======================================================
       ROLE TABS
       RESET DESKTOP 200PX TAB WIDTH ON MOBILE
    ====================================================== */

    .portal-role-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 3px;
        margin-top: 0;
        padding: 3px;
        overflow: hidden;
        border-radius: 7px;
        background: #f4f5f9;
    }

    .portal-role-tabs a {
        width: 100%;
        min-width: 0;
        flex: none;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 6px;
        color: #737b8f;
        font-size: 8px;
        font-weight: 500;
        white-space: nowrap;
    }

    .portal-role-tabs a.active {
        background: #ffffff;
        color: var(--portal-text);
        font-weight: 600;
        box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
    }


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

    .portal-login-form {
        margin-top: 18px;
    }

    .portal-form-group {
        width: 100%;
    }

    .portal-form-group +
    .portal-form-group {
        margin-top: 16px;
    }

    .portal-form-group label {
        display: block;
        margin-bottom: 6px;
        color: var(--portal-text);
        font-size: 8px;
        font-weight: 600;
    }


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

    .portal-form-group input {
        width: 100%;
        height: 36px;
        padding: 0 11px;
        border: 1px solid #dce1ec;
        outline: none;
        border-radius: 7px;
        background: #fbfbfd;
        color: var(--portal-text);
        font-family: inherit;
        font-size: 8px;
        text-align: left !important;
    }

    .portal-form-group input::placeholder {
        color: #aeb5c6;
        font-size: 8px;
        text-align: left !important;
        opacity: 1;
    }


    /* ======================================================
       INPUT WITH ICON
    ====================================================== */

    .portal-input-wrap {
        width: 100%;
        position: relative;
    }

    .portal-input-wrap input {
        padding: 0 34px 0 31px;
        text-align: left !important;
    }

    .portal-input-icon {
        width: 14px;
        height: 14px;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .portal-input-icon svg {
        width: 13px;
        height: 13px;
    }


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

    .portal-password-toggle {
        width: 27px;
        height: 100%;
        top: 0;
        right: 4px;
    }

    .portal-password-toggle svg {
        width: 13px;
        height: 13px;
    }


    /* ======================================================
       REMEMBER / FORGOT
    ====================================================== */

    .portal-login-options {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-top: 12px;
    }

    .portal-login-options label {
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--portal-muted);
        font-size: 7px;
        white-space: nowrap;
    }

    .portal-login-options label input {
        width: 11px;
        height: 11px;
        flex: 0 0 11px;
        margin: 0;
    }

    .portal-login-options a {
        color: var(--portal-accent);
        font-size: 7px;
        font-weight: 600;
        white-space: nowrap;
    }


    /* ======================================================
       SIGN IN BUTTON
    ====================================================== */

    .portal-signin-button {
        width: 100%;
        height: 34px;
        margin-top: 13px;
        border-radius: 6px;
        font-size: 8px;
    }


    /* ======================================================
       FIRST TIME
    ====================================================== */

    .portal-first-time {
        margin-top: 15px;
        padding-top: 11px;
        border-top: 1px solid #edf0f5;
        text-align: center;
    }

    .portal-first-time > span {
        display: block;
        margin-bottom: 9px;
        color: #9ca3b2;
        font-size: 7px;
    }


    /* ======================================================
       ACTIVATE ACCOUNT
    ====================================================== */

    .portal-activate-button {
        width: 100%;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--portal-primary);
        border-radius: 6px;
        background: #ffffff;
        color: var(--portal-primary);
        font-size: 8px;
        font-weight: 600;
    }


    /* ======================================================
       SUPPORT
    ====================================================== */

    .portal-support {
        margin: 17px 0 0;
        color: #a8afbf;
        font-size: 6.5px;
        line-height: 1.5;
        text-align: center;
    }

    .portal-support span {
        margin: 0 4px;
    }


    /* ======================================================
       OPTIONAL SECURITY NOTE
    ====================================================== */

    .portal-security-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        margin-top: 8px;
        color: #c0c5d1;
        font-size: 6px;
        text-align: center;
    }


    /* ======================================================
       FOOTER UNDER CARD
    ====================================================== */

    .portal-login-footer {
        width: 100%;
        position: static;
        margin-top: 15px;
        padding-bottom: 4px;
        color: #b0b6c4;
        font-size: 6px;
        text-align: center;
    }
}


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

@media (max-width: 430px) {

    .portal-auth-brand {
        min-height: 168px;
        padding: 28px 15px 42px;
    }

    .portal-brand-mark {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .portal-brand-header strong {
        font-size: 12px;
    }

    .portal-brand-header small {
        font-size: 6.5px;
    }


    /* ======================================================
       WELCOME
    ====================================================== */

    .portal-mobile-welcome {
        margin-top: 25px;
    }

    .portal-mobile-welcome h2 {
        font-size: 21px;
    }

    .portal-mobile-welcome p {
        font-size: 8px;
    }


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

    .portal-auth-login {
        padding: 0 13px 22px;
    }


    /* ======================================================
       CARD — KEEP THE SAME 23PX OVERLAP
    ====================================================== */

    .portal-login-wrapper {
        margin-top: -23px;
        padding: 14px 14px 17px;
        border-radius: 12px;
    }


    /* ======================================================
       TABS
    ====================================================== */

    .portal-role-tabs {
        gap: 2px;
        padding: 3px;
    }

    .portal-role-tabs a {
        width: 100%;
        min-width: 0;
        flex: none;
        height: 29px;
        font-size: 7.5px;
    }


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

    .portal-login-form {
        margin-top: 17px;
    }

    .portal-form-group +
    .portal-form-group {
        margin-top: 16px;
    }

    .portal-form-group label {
        font-size: 7.5px;
    }

    .portal-form-group input {
        height: 35px;
        font-size: 7.5px;
    }

    .portal-form-group input::placeholder {
        font-size: 7.5px;
    }


    /* ======================================================
       OPTIONS
    ====================================================== */

    .portal-login-options {
        margin-top: 12px;
    }

    .portal-login-options label,
    .portal-login-options a {
        font-size: 6.5px;
    }


    /* ======================================================
       SIGN IN
    ====================================================== */

    .portal-signin-button {
        height: 33px;
        font-size: 7.5px;
    }


    /* ======================================================
       FIRST TIME
    ====================================================== */

    .portal-first-time {
        margin-top: 15px;
    }

    .portal-first-time > span {
        font-size: 7px;
    }


    /* ======================================================
       ACTIVATE
    ====================================================== */

    .portal-activate-button {
        height: 31px;
        font-size: 7.5px;
    }


    /* ======================================================
       SUPPORT
    ====================================================== */

    .portal-support {
        margin-top: 16px;
        font-size: 6px;
    }

    .portal-security-note {
        margin-top: 7px;
        font-size: 5.8px;
    }


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

    .portal-login-footer {
        margin-top: 14px;
        font-size: 5.8px;
    }
}


/* ==========================================================
   FORGOT PASSWORD / ACCOUNT RECOVERY
========================================================== */

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

    display: grid;

    grid-template-columns:
        minmax(400px, 42%)
        minmax(0, 1fr);

    background: var(--portal-white);
}


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

.portal-recovery-brand {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    padding:
        48px
        clamp(42px, 5vw, 88px)
        38px;

    background: var(--portal-primary);

    color: var(--portal-white);
}





.portal-recovery-brand-content {
    margin-top:
        clamp(
            65px,
            11vh,
            115px
        );
}


.portal-recovery-brand-content h1 {
    max-width: 300px;

    margin: 0;

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

    line-height: 1.08;
}


.portal-recovery-brand-content > p {
    max-width: 300px;

    margin:
        24px 0
        0;

    color:
        rgba(
            255,
            255,
            255,
            .62
        );

    font-size: 14px;

    line-height: 1.45;
}


/* ==========================================================
   RECOVERY STEPS
========================================================== */

.portal-recovery-steps {
    width: 100%;

    margin-top: 36px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


.portal-recovery-step {
    width: 100%;
    min-height: 60px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding:
        10px 13px;

    border-radius: 7px;

    background:
        rgba(
            31,
            67,
            130,
            .47
        );
}


.portal-recovery-step-number {
    width: 24px;
    height: 24px;

    flex: 0 0 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--portal-accent);

    color: var(--portal-primary);

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


.portal-recovery-step-text {
    color:
        rgba(
            255,
            255,
            255,
            .82
        );

    font-size: 13px;
    font-weight: 400;
}


.portal-recovery-help {
    margin:
        30px 0
        0 !important;

    color:
        rgba(
            255,
            255,
            255,
            .45
        ) !important;

    font-size: 12px !important;
    font-weight: 400;
}





/* ==========================================================
   RIGHT
========================================================== */

.portal-recovery-form-side {
    min-height: 100vh;

    position: relative;

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

    padding:
        60px 45px
        85px;

    background: #ffffff;
}


.portal-recovery-form-wrapper {
    width:
        min(
            100%,
            460px
        );

    text-align: center;
}


/* ==========================================================
   LOCK
========================================================== */

.portal-recovery-lock {
    width: 100px;
    height: 100px;

    display: grid;
    place-items: center;

    margin:
        0 auto
        22px;

    border-radius: 50%;

    background: var(--portal-primary);

    color: var(--portal-accent);
}


.portal-recovery-lock svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

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


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

.portal-recovery-heading h2 {
    margin: 0;

    color: var(--portal-text);

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

    line-height: 1.15;
}


.portal-recovery-heading p {
    max-width: 440px;

    margin:
        9px auto
        0;

    color: var(--portal-muted);

    font-size: 13px;

    line-height: 1.45;
}


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

.portal-recovery-form {
    margin-top: 36px;

    text-align: left;
}


.portal-recovery-form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--portal-text);

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


.portal-recovery-form-group input {
    width: 100%;
    height: 42px;

    padding:
        0 13px;

    border: 0;
    outline: none;

    border-radius: 7px;

    background: #e8ecf6;

    color: var(--portal-text);

    font-size: 12px;
}


.portal-recovery-form-group input::placeholder {
    color: #afb6c7;
}


/* ==========================================================
   SEND BUTTON
========================================================== */

.portal-recovery-submit {
    width: 100%;
    height: 52px;

    margin-top: 8px;

    border: 0;

    border-radius: 12px;

    background: var(--portal-primary);

    color: #ffffff;

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

    cursor: pointer;
}


/* ==========================================================
   DIVIDER
========================================================== */

.portal-recovery-divider {
    display: grid;

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

    align-items: center;

    gap: 12px;

    margin:
        14px 0;
}


.portal-recovery-divider span {
    height: 1px;

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


.portal-recovery-divider small {
    color: #a8afbf;

    font-size: 8px;
}


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

.portal-recovery-back {
    width: 100%;
    height: 48px;

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

    border-radius: 7px;

    background: #eef1f9;

    color: var(--portal-primary);

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

    text-decoration: none;
}


/* ==========================================================
   EXPIRY
========================================================== */

.portal-recovery-expiry {
    margin:
        17px 0
        0;

    color: #adb4c3;

    font-size: 8px;
}


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

.portal-recovery-footer {
    position: absolute;

    bottom: 30px;
    left: 20px;
    right: 20px;

    color: #c0c5d1;

    font-size: 12px;

    text-align: center;
}
/* ==========================================================
   ==========================================================
   FORGOT PASSWORD PAGE RESPONSIVENESS
   ADD BELOW YOUR CURRENT DESKTOP CSS
   ==========================================================
   ========================================================== */


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

@media (max-width: 900px) {

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

    .portal-recovery-page {
        grid-template-columns:
            40%
            60%;
    }


    /* ======================================================
       LEFT PANEL
    ====================================================== */

    .portal-recovery-brand {
        padding:
            40px 28px
            30px;
    }


    .portal-recovery-brand-mark {
        width: 42px;
        height: 42px;

        flex: 0 0 42px;

        font-size: 15px;
    }


    .portal-recovery-brand-header strong {
        font-size: 14px;
    }


    .portal-recovery-brand-header small {
        font-size: 7.5px;
    }


    .portal-recovery-brand-content {
        margin-top: 60px;
    }


    .portal-recovery-brand-content h1 {
        max-width: 250px;

        font-size: 26px;
    }


    .portal-recovery-brand-content > p {
        max-width: 250px;

        margin-top: 18px;

        font-size: 10px;
    }


    /* ======================================================
       STEPS
    ====================================================== */

    .portal-recovery-steps {
        margin-top: 28px;

        gap: 9px;
    }


    .portal-recovery-step {
        min-height: 44px;

        gap: 10px;

        padding:
            9px 10px;
    }


    .portal-recovery-step-number {
        width: 18px;
        height: 18px;

        flex: 0 0 18px;

        font-size: 7px;
    }


    .portal-recovery-step-text {
        font-size: 8px;
    }


    .portal-recovery-help {
        margin-top: 24px !important;

        font-size: 7px !important;
    }


    /* ======================================================
       RIGHT PANEL
    ====================================================== */

    .portal-recovery-form-side {
        padding:
            50px 32px
            75px;
    }


    .portal-recovery-form-wrapper {
        max-width: 420px;
    }


    .portal-recovery-lock {
        width: 56px;
        height: 56px;

        margin-bottom: 19px;
    }


    .portal-recovery-lock svg {
        width: 22px;
        height: 22px;
    }


    .portal-recovery-heading h2 {
        font-size: 22px;
    }


    .portal-recovery-heading p {
        font-size: 8.5px;
    }


    .portal-recovery-form {
        margin-top: 30px;
    }


    .portal-recovery-form-group input {
        height: 40px;
    }


    .portal-recovery-submit {
        height: 40px;
    }


    .portal-recovery-back {
        height: 38px;
    }
    /* ======================================================
   RESET EMAIL SENT
====================================================== */

.portal-reset-sent-page {
    grid-template-columns:
        40%
        60%;
}


.portal-reset-sent-brand {
    padding:
        40px 28px
        30px;
}


.portal-reset-sent-brand-content h1 {
    font-size: 27px;
}


.portal-reset-sent-main {
    padding:
        60px 32px
        80px;
}


.portal-reset-sent-wrapper {
    max-width: 430px;
}
}



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

@media (max-width: 650px) {

    html,
    body {
        width: 100%;
        min-height: 100%;

        background: var(--portal-background);
    }


    body {
        overflow-x: hidden;
    }


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

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

        display: block;

        background: var(--portal-background);
    }


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

    .portal-recovery-brand {
        width: 100%;
        min-height: 180px;

        display: block;

        padding:
            27px 16px
            50px;

        background: var(--portal-primary);
    }


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

    .portal-recovery-brand-header {
        gap: 10px;
    }


    .portal-recovery-brand-mark {
        width: 34px;
        height: 34px;

        flex: 0 0 34px;

        border-radius: 9px;

        background: var(--portal-accent);

        color: var(--portal-primary);

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


    .portal-recovery-brand-header strong {
        font-size: 12px;
    }


    .portal-recovery-brand-header small {
        margin-top: 2px;

        font-size: 6.5px;
    }


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

    .portal-recovery-brand-content {
        margin-top: 25px;
    }


    .portal-recovery-brand-content h1 {
        max-width: 250px;

        font-size: 21px;

        line-height: 1.1;
    }


    .portal-recovery-brand-content > p {
        max-width: 270px;

        margin-top: 6px;

        font-size: 8px;

        line-height: 1.4;
    }


    /* ======================================================
       HIDE DESKTOP STEPS
    ====================================================== */

    .portal-recovery-steps,
    .portal-recovery-help,
    .portal-recovery-powered {
        display: none;
    }


    /* ======================================================
       RIGHT AREA
    ====================================================== */

    .portal-recovery-form-side {
        width: 100%;
        min-height: auto;

        display: block;

        position: relative;

        padding:
            0 13px
            24px;

        background: var(--portal-background);
    }


    /* ======================================================
       WHITE FLOATING CARD
    ====================================================== */

    .portal-recovery-form-wrapper {
        width: 100%;
        max-width: none;

        position: relative;

        z-index: 5;

        margin-top: -24px;

        padding:
            23px 14px
            18px;

        border-radius: 12px;

        background: #ffffff;

        box-shadow:
            0 4px 16px
            rgba(
                8,
                21,
                54,
                .10
            );
    }


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

    .portal-recovery-lock {
        width: 48px;
        height: 48px;

        margin:
            0 auto
            15px;
    }


    .portal-recovery-lock svg {
        width: 20px;
        height: 20px;
    }


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

    .portal-recovery-heading h2 {
        font-size: 19px;
    }


    .portal-recovery-heading p {
        max-width: 280px;

        margin-top: 6px;

        font-size: 7.5px;

        line-height: 1.4;
    }


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

    .portal-recovery-form {
        margin-top: 22px;
    }


    .portal-recovery-form-group label {
        margin-bottom: 6px;

        font-size: 7.5px;
    }


    .portal-recovery-form-group input {
        height: 36px;

        padding:
            0 11px;

        border:
            1px solid
            #dce1ec;

        border-radius: 7px;

        background: #fbfbfd;

        font-size: 8px;
    }


    .portal-recovery-form-group input::placeholder {
        font-size: 8px;
    }


    /* ======================================================
       SEND RESET LINK
    ====================================================== */

    .portal-recovery-submit {
        height: 35px;

        margin-top: 8px;

        border-radius: 6px;

        font-size: 8px;
    }


    /* ======================================================
       DIVIDER
    ====================================================== */

    .portal-recovery-divider {
        gap: 9px;

        margin:
            12px 0;
    }


    .portal-recovery-divider small {
        font-size: 7px;
    }


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

    .portal-recovery-back {
        height: 34px;

        border-radius: 6px;

        font-size: 8px;
    }


    /* ======================================================
       EXPIRY
    ====================================================== */

    .portal-recovery-expiry {
        margin-top: 14px;

        font-size: 6.5px;
    }


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

    .portal-recovery-footer {
        width: 100%;

        position: static;

        margin-top: 15px;

        color: #b0b6c4;

        font-size: 6px;

        text-align: center;
    }

    /* ======================================================
   RESET EMAIL SENT — MOBILE
====================================================== */

.portal-reset-sent-page {
    display: block;

    min-height: 100vh;

    background: var(--portal-background);
}


/* NAVY HEADER */

.portal-reset-sent-brand {
    width: 100%;
    min-height: 180px;

    display: block;

    padding:
        27px 16px
        50px;
}


/* BRAND */

.portal-reset-sent-brand-header {
    gap: 10px;
}


.portal-reset-sent-brand-mark {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 9px;

    background: var(--portal-accent);

    color: var(--portal-primary);

    font-size: 14px;
}


.portal-reset-sent-brand-header strong {
    font-size: 12px;
}


.portal-reset-sent-brand-header small {
    font-size: 6.5px;
}


/* LEFT MOBILE COPY */

.portal-reset-sent-brand-content {
    margin-top: 25px;
}


.portal-reset-sent-brand-content h1 {
    max-width: 250px;

    font-size: 21px;
}


.portal-reset-sent-brand-content > p {
    max-width: 280px;

    margin-top: 7px;

    font-size: 8px;
}


/* HIDE TIP ON MOBILE */

.portal-reset-sent-tip,
.portal-reset-sent-powered {
    display: none;
}


/* RIGHT SIDE */

.portal-reset-sent-main {
    width: 100%;
    min-height: auto;

    display: block;

    padding:
        0 13px
        24px;

    background: var(--portal-background);
}


/* FLOATING WHITE CARD */

.portal-reset-sent-wrapper {
    width: 100%;
    max-width: none;

    position: relative;

    z-index: 5;

    margin-top: -24px;

    padding:
        23px 14px
        18px;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 4px 16px
        rgba(
            8,
            21,
            54,
            .10
        );
}


/* SUCCESS ICON */

.portal-email-success-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 15px;
}


.portal-email-success-icon > svg {
    width: 23px;
    height: 23px;
}


.portal-email-success-check {
    width: 19px;
    height: 19px;

    border-width: 2px;
}


.portal-email-success-check svg {
    width: 9px;
    height: 9px;
}


/* HEADING */

.portal-reset-sent-heading h2 {
    font-size: 19px;
}


.portal-reset-sent-heading p,
.portal-reset-sent-heading strong {
    font-size: 7.5px;
}


/* COUNTDOWN */

.portal-reset-countdown {
    min-height: 48px;

    gap: 8px;

    margin-top: 20px;

    padding:
        0 12px;
}


.portal-reset-countdown-label {
    gap: 5px;

    font-size: 7px;
}


.portal-reset-countdown-label svg {
    width: 12px;
    height: 12px;
}


.portal-reset-countdown > strong {
    font-size: 18px;
}


.portal-reset-countdown > span {
    font-size: 7px;
}


/* BUTTONS */

.portal-open-email-button {
    height: 36px;

    margin-top: 12px;

    border-radius: 6px;

    font-size: 8px;
}


.portal-resend-form {
    margin-top: 9px;
}


.portal-resend-email-button,
.portal-reset-back-button {
    height: 34px;

    border-radius: 6px;

    font-size: 8px;
}


.portal-reset-back-button {
    margin-top: 9px;
}


/* FOOTER */

.portal-reset-sent-footer {
    position: static;

    margin-top: 15px;

    font-size: 6px;
}
}



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

@media (max-width: 430px) {

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

    .portal-recovery-brand {
        min-height: 176px;

        padding:
            26px 15px
            48px;
    }


    .portal-recovery-brand-mark {
        width: 34px;
        height: 34px;

        flex-basis: 34px;
    }


    .portal-recovery-brand-header strong {
        font-size: 12px;
    }


    .portal-recovery-brand-header small {
        font-size: 6.5px;
    }


    /* ======================================================
       LEFT COPY
    ====================================================== */

    .portal-recovery-brand-content {
        margin-top: 24px;
    }


    .portal-recovery-brand-content h1 {
        max-width: 220px;

        font-size: 20px;
    }


    .portal-recovery-brand-content > p {
        max-width: 245px;

        font-size: 7.5px;
    }


    /* ======================================================
       RIGHT AREA
    ====================================================== */

    .portal-recovery-form-side {
        padding:
            0 12px
            22px;
    }


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

    .portal-recovery-form-wrapper {
        margin-top: -23px;

        padding:
            21px 13px
            17px;

        border-radius: 12px;
    }


    /* ======================================================
       LOCK
    ====================================================== */

    .portal-recovery-lock {
        width: 45px;
        height: 45px;

        margin-bottom: 14px;
    }


    .portal-recovery-lock svg {
        width: 19px;
        height: 19px;
    }


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

    .portal-recovery-heading h2 {
        font-size: 18px;
    }


    .portal-recovery-heading p {
        max-width: 250px;

        font-size: 7px;
    }


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

    .portal-recovery-form {
        margin-top: 20px;
    }


    .portal-recovery-form-group label {
        font-size: 7px;
    }


    .portal-recovery-form-group input {
        height: 34px;

        font-size: 7.5px;
    }


    .portal-recovery-form-group input::placeholder {
        font-size: 7.5px;
    }


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

    .portal-recovery-submit {
        height: 34px;

        font-size: 7.5px;
    }


    /* ======================================================
       DIVIDER
    ====================================================== */

    .portal-recovery-divider {
        margin:
            11px 0;
    }


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

    .portal-recovery-back {
        height: 33px;

        font-size: 7.5px;
    }


    /* ======================================================
       EXPIRY
    ====================================================== */

    .portal-recovery-expiry {
        margin-top: 13px;

        font-size: 6px;
    }


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

    .portal-recovery-footer {
        margin-top: 14px;

        font-size: 5.8px;
    }
    /* ======================================================
   RESET EMAIL SENT — SMALL MOBILE
====================================================== */

.portal-reset-sent-brand {
    min-height: 176px;

    padding:
        26px 15px
        48px;
}


.portal-reset-sent-brand-content {
    margin-top: 24px;
}


.portal-reset-sent-brand-content h1 {
    max-width: 220px;

    font-size: 20px;
}


.portal-reset-sent-brand-content > p {
    max-width: 250px;

    font-size: 7.5px;
}


.portal-reset-sent-main {
    padding:
        0 12px
        22px;
}


.portal-reset-sent-wrapper {
    margin-top: -23px;

    padding:
        21px 13px
        17px;

    border-radius: 12px;
}


.portal-email-success-icon {
    width: 48px;
    height: 48px;
}


.portal-reset-sent-heading h2 {
    font-size: 18px;
}


.portal-reset-countdown {
    min-height: 45px;

    padding:
        0 10px;
}


.portal-reset-countdown-label {
    font-size: 6.5px;
}


.portal-reset-countdown > strong {
    font-size: 17px;
}


.portal-reset-countdown > span {
    font-size: 6.5px;
}


.portal-open-email-button {
    height: 34px;

    font-size: 7.5px;
}


.portal-resend-email-button,
.portal-reset-back-button {
    height: 33px;

    font-size: 7.5px;
}


.portal-reset-sent-footer {
    margin-top: 14px;

    font-size: 5.8px;
}
}

/* ==========================================================
   RESET EMAIL SENT PAGE
========================================================== */

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

    display: grid;

    grid-template-columns:
        minmax(400px, 42%)
        minmax(0, 1fr);

    background: var(--portal-white);
}


/* ==========================================================
   LEFT PANEL
========================================================== */

.portal-reset-sent-brand {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    padding:
        48px
        clamp(42px, 5vw, 88px)
        38px;

    background: var(--portal-primary);

    color: #ffffff;
}


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

.portal-reset-sent-brand-header {
    display: flex;
    align-items: center;

    gap: 14px;
}


.portal-reset-sent-brand-mark {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;
display: none;
    place-items: center;

    border-radius: 50%;

    background: var(--portal-primary-light);

    color: #ffffff;

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


.portal-reset-sent-brand-header strong {
    display: none;

    color: #ffffff;

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


.portal-reset-sent-brand-header small {
    display: block;

    margin-top: 3px;

    color:
        rgba(
            255,
            255,
            255,
            .55
        );

    font-size: 8px;
}


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

.portal-reset-sent-brand-content {
    margin-top:
        clamp(
            85px,
            16vh,
            155px
        );
}


.portal-reset-sent-brand-content h1 {
    max-width: 320px;

    margin: 0;

    color: #ffffff;

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

    line-height: 1.05;
}


.portal-reset-sent-brand-content > p {
    max-width: 320px;

    margin:
        34px 0
        0;

    color:
        rgba(
            255,
            255,
            255,
            .65
        );

    font-size: 14px;

    line-height: 1.45;
}


/* ==========================================================
   TIP
========================================================== */

.portal-reset-sent-tip {
    max-width: 340px;

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

    gap: 7px;

    margin-top: 47px;
}


.portal-reset-sent-tip > span {
    flex: 0 0 auto;

    font-size: 12px;
}


.portal-reset-sent-tip p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .58
        );

    font-size: 12px;

    line-height: 1.45;
}


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

.portal-reset-sent-powered {
    margin-top: auto;

    color:
        rgba(
            255,
            255,
            255,
            .30
        );

    font-size: 8px;
}


/* ==========================================================
   RIGHT SIDE
========================================================== */

.portal-reset-sent-main {
    min-height: 100vh;

    position: relative;

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

    padding:
        70px 45px
        90px;

    background: #ffffff;
}


.portal-reset-sent-wrapper {
    width:
        min(
            100%,
            480px
        );

    text-align: center;
}


/* ==========================================================
   EMAIL SUCCESS ICON
========================================================== */

.portal-email-success-icon {
    width: 100px;
    height: 100px;

    position: relative;

    display: grid;
    place-items: center;

    margin:
        0 auto
        24px;

    border-radius: 50%;

    background: #20b66c;

    color: #ffffff;
}


.portal-email-success-icon > svg {
    width: 44px;
    height: 44px;

    fill: #ffffff;

    stroke: #81908d;

    stroke-width: .7;
}


.portal-email-success-check {
    width: 32px;
    height: 32px;

    position: absolute;

    right: -2px;
    bottom: 4px;

    display: grid;
    place-items: center;



    border-radius: 50%;

    background: #20b66c;
}


.portal-email-success-check svg {
    width: 13px;
    height: 17px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 3;

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


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

.portal-reset-sent-heading h2 {
    margin: 0;

    color: var(--portal-primary);

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

    line-height: 1.15;
}


.portal-reset-sent-heading p {
    margin:
        9px 0
        4px;

    color: var(--portal-muted);

    font-size: 13px;
    font-weight: 400;
}


.portal-reset-sent-heading strong {
    display: block;

    color: var(--portal-primary);

    font-size: 14px;
    font-weight: 600;
}



/* ==========================================================
   COUNTDOWN
========================================================== */

.portal-reset-countdown {
    width: 100%;
    min-height: 55px;

    position: relative;

    display: flex;
    align-items: center;

    margin-top: 27px;

    padding:
        0 20px;

    border-radius: 9px;

    background: #e5eafa;
}


/* LEFT LABEL */

.portal-reset-countdown-label {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #6B7288;

    font-size: 13px;
}


.portal-reset-countdown-label svg {
    width: 14px;
    height: 14px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

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


/* CENTER TIMER + MINUTES */

.portal-reset-countdown > strong {
    position: absolute;

    left: 50%;
    transform: translateX(-65%);

    color: var(--portal-primary);

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

    line-height: 1;
}


.portal-reset-countdown > span {
    position: absolute;

    left: 50%;

    margin-left: 38px;

    color: #6B7288;

    font-size: 13px;

    line-height: 1;
}


/* EXPIRED */

.portal-reset-countdown.is-expired {
    opacity: .65;
}

/* ==========================================================
   OPEN EMAIL
========================================================== */

.portal-open-email-button {
    width: 100%;
    height: 48px;

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

    margin-top: 16px;

    border-radius: 9px;

    background: var(--portal-accent);

    color: var(--portal-primary);

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

    text-decoration: none;

    transition:
        transform .18s ease,
        opacity .18s ease;
}


.portal-open-email-button:hover {
    transform:
        translateY(-1px);

    opacity: .95;
}


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

.portal-resend-form {
    width: 100%;

    margin-top: 12px;
}


.portal-resend-email-button {
    width: 100%;
    height: 48px;

    border: 0;

    border-radius: 8px;

    background: #edf0f9;

    color: #1746db;

    font-family: inherit;

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

    cursor: pointer;
}


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

.portal-reset-back-button {
    width: 100%;
    height: 48px;

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

    margin-top: 12px;

    border-radius: 8px;

    background: #edf0f9;

    color: var(--portal-primary);

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

    text-decoration: none;
}


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

.portal-reset-sent-footer {
    position: absolute;

    right: 20px;
    bottom: 30px;
    left: 20px;

    color: #c1c6d2;

    font-size: 8px;

    text-align: center;
}

/* ==========================================================
   FINAL UNIFIED AUTH RESPONSIVENESS
   Login + Forgot Password + Email Sent
   Keeps the same mobile composition:
   short navy header + slightly overlapping white card
========================================================== */

/* ==========================================================
   TABLET
========================================================== */
@media (max-width: 900px) {

    .portal-recovery-page,
    .portal-reset-sent-page {
        grid-template-columns: 40% 60%;
    }

    .portal-recovery-brand,
    .portal-reset-sent-brand {
        padding: 40px 28px 30px;
    }

    .portal-recovery-brand-content,
    .portal-reset-sent-brand-content {
        margin-top: 60px;
    }

    .portal-recovery-brand-content h1,
    .portal-reset-sent-brand-content h1 {
        font-size: 27px;
    }

    .portal-recovery-form-side,
    .portal-reset-sent-main {
        padding: 60px 32px 80px;
    }

    .portal-recovery-form-wrapper {
        max-width: 420px;
    }

    .portal-reset-sent-wrapper {
        max-width: 430px;
    }
}


/* ==========================================================
   MOBILE
========================================================== */
@media (max-width: 650px) {

    html,
    body {
        width: 100%;
        min-height: 100%;
        margin: 0;
        overflow-x: hidden;
        background: var(--portal-background);
    }

    /* ------------------------------------------------------
       SHARED PAGE SHELL
    ------------------------------------------------------ */

    .portal-recovery-page,
    .portal-reset-sent-page {
        width: 100%;
        min-height: 100vh;
        display: block;
        position: relative;
        overflow-x: hidden;
        background: var(--portal-background);
    }

    /* ------------------------------------------------------
       SHARED NAVY HEADER
    ------------------------------------------------------ */

    .portal-recovery-brand,
    .portal-reset-sent-brand {
        width: 100%;
        min-height: 168px;
        display: block;
        position: relative;
        padding: 28px 16px 42px;
        background: var(--portal-primary);
        color: #ffffff;
    }

    .portal-recovery-brand-header,
    .portal-reset-sent-brand-header {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .portal-recovery-brand-mark,
    .portal-reset-sent-brand-mark {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: grid;
        place-items: center;
        border-radius: 9px;
        background: var(--portal-accent);
        color: var(--portal-primary);
        font-size: 14px;
        font-weight: 800;
    }

    .portal-recovery-brand-header strong,
    .portal-reset-sent-brand-header strong {
        display: block;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.2;
    }

    .portal-recovery-brand-header small,
    .portal-reset-sent-brand-header small {
        display: block;
        margin-top: 2px;
        color: rgba(255, 255, 255, .55);
        font-size: 7px;
        line-height: 1.25;
    }

    /* ------------------------------------------------------
       MOBILE TITLE COPY IN NAVY AREA
    ------------------------------------------------------ */

    .portal-recovery-brand-content,
    .portal-reset-sent-brand-content {
        display: block;
        margin-top: 25px;
    }

    .portal-recovery-brand-content h1,
    .portal-reset-sent-brand-content h1 {
        max-width: 250px;
        margin: 0;
        color: #ffffff;
        font-size: 21px;
        font-weight: 700;
        line-height: 1.08;
    }

    .portal-recovery-brand-content > p,
    .portal-reset-sent-brand-content > p {
        max-width: 280px;
        margin: 5px 0 0;
        color: rgba(255, 255, 255, .58);
        font-size: 8px;
        line-height: 1.35;
    }

    /* Keep the mobile navy area clean like the login screen */
    .portal-recovery-steps,
    .portal-recovery-help,
    .portal-recovery-powered,
    .portal-reset-sent-tip,
    .portal-reset-sent-powered {
        display: none;
    }

    /* ------------------------------------------------------
       FORGOT PASSWORD: CARD AREA
    ------------------------------------------------------ */

    .portal-recovery-form-side {
        width: 100%;
        min-height: auto;
        display: block;
        position: relative;
        padding: 0 13px 24px;
        margin: 0;
        background: var(--portal-background);
    }

    .portal-recovery-form-wrapper {
        width: 100%;
        max-width: none;
        position: relative;
        z-index: 10;
        margin-top: -23px;
        padding: 18px 14px 18px;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 5px 16px rgba(8, 21, 54, .10);
        text-align: center;
    }

    .portal-recovery-lock {
        width: 48px;
        height: 48px;
        margin: 0 auto 14px;
        border-radius: 50%;
    }

    .portal-recovery-lock svg {
        width: 20px;
        height: 20px;
    }

    .portal-recovery-heading h2 {
        margin: 0;
        font-size: 19px;
        line-height: 1.15;
    }

    .portal-recovery-heading p {
        max-width: 270px;
        margin: 5px auto 0;
        font-size: 7.5px;
        line-height: 1.4;
    }

    .portal-recovery-form {
        margin-top: 19px;
        text-align: left;
    }

    .portal-recovery-form-group label {
        margin-bottom: 6px;
        font-size: 8px;
    }

    .portal-recovery-form-group input {
        width: 100%;
        height: 36px;
        padding: 0 11px;
        border: 1px solid #dce1ec;
        outline: none;
        border-radius: 7px;
        background: #fbfbfd;
        font-size: 8px;
        text-align: left;
    }

    .portal-recovery-form-group input::placeholder {
        font-size: 8px;
        text-align: left;
    }

    .portal-recovery-submit {
        width: 100%;
        height: 34px;
        margin-top: 8px;
        border-radius: 6px;
        font-size: 8px;
    }

    .portal-recovery-divider {
        gap: 9px;
        margin: 11px 0;
    }

    .portal-recovery-divider small {
        font-size: 7px;
    }

    .portal-recovery-back {
        width: 100%;
        height: 32px;
        border-radius: 6px;
        font-size: 8px;
    }

    .portal-recovery-expiry {
        margin-top: 13px;
        font-size: 6.5px;
    }

    .portal-recovery-footer {
        width: 100%;
        position: static;
        margin-top: 15px;
        padding-bottom: 4px;
        color: #b0b6c4;
        font-size: 6px;
        text-align: center;
    }

    /* ------------------------------------------------------
       EMAIL SENT: CARD AREA
    ------------------------------------------------------ */

    .portal-reset-sent-main {
        width: 100%;
        min-height: auto;
        display: block;
        position: relative;
        padding: 0 13px 24px;
        margin: 0;
        background: var(--portal-background);
    }

    .portal-reset-sent-wrapper {
        width: 100%;
        max-width: none;
        position: relative;
        z-index: 10;
        margin-top: -23px;
        padding: 18px 14px 18px;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 5px 16px rgba(8, 21, 54, .10);
        text-align: center;
    }

    .portal-email-success-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 14px;
    }

    .portal-email-success-icon > svg {
        width: 21px;
        height: 21px;
    }

    .portal-email-success-check {
        width: 18px;
        height: 18px;
        right: -2px;
        bottom: 2px;
        border: 2px solid #ffffff;
    }

    .portal-email-success-check svg {
        width: 8px;
        height: 8px;
    }

    .portal-reset-sent-heading h2 {
        margin: 0;
        font-size: 19px;
        line-height: 1.15;
    }

    .portal-reset-sent-heading p {
        margin: 5px 0 3px;
        font-size: 7.5px;
    }

    .portal-reset-sent-heading strong {
        font-size: 8px;
    }

    .portal-reset-countdown {
        width: 100%;
        min-height: 44px;
        position: relative;
        display: flex;
        align-items: center;
        margin-top: 18px;
        padding: 0 10px;
        border-radius: 7px;
        background: #e5eafa;
    }

    .portal-reset-countdown-label {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #6B7288;
        font-size: 6.5px;
        white-space: nowrap;
    }

    .portal-reset-countdown-label svg {
        width: 11px;
        height: 11px;
    }

    .portal-reset-countdown > strong {
        position: absolute;
        left: 50%;
        transform: translateX(-70%);
        color: var(--portal-primary);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
    }

    .portal-reset-countdown > span {
        position: absolute;
        left: 50%;
        margin-left: 27px;
        color: #6B7288;
        font-size: 6.5px;
        line-height: 1;
    }

    .portal-open-email-button {
        width: 100%;
        height: 34px;
        margin-top: 10px;
        border-radius: 6px;
        font-size: 8px;
    }

    .portal-resend-form {
        width: 100%;
        margin-top: 9px;
    }

    .portal-resend-email-button,
    .portal-reset-back-button {
        width: 100%;
        height: 32px;
        border-radius: 6px;
        font-size: 8px;
    }

    .portal-reset-back-button {
        margin-top: 9px;
    }

    .portal-reset-sent-footer {
        width: 100%;
        position: static;
        margin-top: 15px;
        padding-bottom: 4px;
        color: #b0b6c4;
        font-size: 6px;
        text-align: center;
    }
}


/* ==========================================================
   SMALL MOBILE
========================================================== */
@media (max-width: 430px) {

    .portal-recovery-brand,
    .portal-reset-sent-brand {
        min-height: 168px;
        padding: 28px 15px 42px;
    }

    .portal-recovery-brand-header strong,
    .portal-reset-sent-brand-header strong {
        font-size: 12px;
    }

    .portal-recovery-brand-header small,
    .portal-reset-sent-brand-header small {
        font-size: 6.5px;
    }

    .portal-recovery-brand-content,
    .portal-reset-sent-brand-content {
        margin-top: 25px;
    }

    .portal-recovery-brand-content h1,
    .portal-reset-sent-brand-content h1 {
        max-width: 220px;
        font-size: 20px;
    }

    .portal-recovery-brand-content > p,
    .portal-reset-sent-brand-content > p {
        max-width: 245px;
        font-size: 7.5px;
    }

    .portal-recovery-form-side,
    .portal-reset-sent-main {
        padding: 0 13px 22px;
    }

    .portal-recovery-form-wrapper,
    .portal-reset-sent-wrapper {
        margin-top: -23px;
        padding: 17px 14px 17px;
        border-radius: 12px;
    }

    .portal-recovery-lock,
    .portal-email-success-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 13px;
    }

    .portal-recovery-heading h2,
    .portal-reset-sent-heading h2 {
        font-size: 18px;
    }

    .portal-recovery-heading p,
    .portal-reset-sent-heading p {
        font-size: 7px;
    }

    .portal-recovery-form {
        margin-top: 18px;
    }

    .portal-recovery-form-group input {
        height: 35px;
        font-size: 7.5px;
    }

    .portal-recovery-form-group input::placeholder {
        font-size: 7.5px;
    }

    .portal-recovery-submit,
    .portal-open-email-button {
        height: 33px;
        font-size: 7.5px;
    }

    .portal-recovery-back,
    .portal-resend-email-button,
    .portal-reset-back-button {
        height: 31px;
        font-size: 7.5px;
    }

    .portal-reset-countdown {
        min-height: 42px;
        margin-top: 17px;
        padding: 0 9px;
    }

    .portal-reset-countdown-label {
        font-size: 6px;
    }

    .portal-reset-countdown > strong {
        font-size: 15px;
    }

    .portal-reset-countdown > span {
        margin-left: 25px;
        font-size: 6px;
    }

    .portal-recovery-footer,
    .portal-reset-sent-footer {
        margin-top: 14px;
        font-size: 5.8px;
    }
}

/* ==========================================================
   FINAL MOBILE CARD OVERLAP FIX
   Uses transform instead of negative top margin so the card
   always visibly overlaps the navy panel and cannot collapse.
========================================================== */

@media (max-width: 650px) {

    .portal-auth-brand,
    .portal-recovery-brand,
    .portal-reset-sent-brand {
        position: relative;
        z-index: 1;
    }

    .portal-auth-login,
    .portal-recovery-form-side,
    .portal-reset-sent-main {
        position: relative;
        z-index: 2;
        overflow: visible;
        padding-top: 0;
    }

    .portal-login-wrapper,
    .portal-recovery-form-wrapper,
    .portal-reset-sent-wrapper {
        position: relative;
        z-index: 20;

        margin-top: 0 !important;
        margin-bottom: -23px;

        transform: translateY(-23px);

        overflow: visible;
    }

    .portal-login-footer,
    .portal-recovery-footer,
    .portal-reset-sent-footer {
        position: relative;
        z-index: 3;
    }
}

@media (max-width: 430px) {

    .portal-login-wrapper,
    .portal-recovery-form-wrapper,
    .portal-reset-sent-wrapper {
        margin-top: 0 !important;
        margin-bottom: -23px;

        transform: translateY(-23px);
    }
}
/* ==========================================================
   FORM ERROR ALERT
========================================================== */

.portal-error-alert {
    width: 100%;

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

    gap: 10px;

    position: relative;

    margin-bottom: 18px;

    padding:
        12px
        38px
        12px
        12px;

    border:
        1px solid
        #fecaca;

    border-radius: 8px;

    background: #fff1f2;

    color: #b42318;

    opacity: 1;

    transform:
        translateY(0);

    transition:
        opacity .35s ease,
        transform .35s ease,
        margin .35s ease,
        padding .35s ease;
}


.portal-error-alert.is-hiding {
    opacity: 0;

    transform:
        translateY(-6px);
}


.portal-error-icon {
    width: 20px;
    height: 20px;

    flex:
        0 0
        20px;

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

    border-radius: 50%;

    background: #dc2626;

    color: #ffffff;

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


.portal-error-content {
    flex: 1;
}


.portal-error-content p {
    margin: 0;

    color: #b42318;

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

    line-height: 1.4;
}


.portal-error-content p + p {
    margin-top: 4px;
}


.portal-error-close {
    width: 24px;
    height: 24px;

    position: absolute;

    top: 7px;
    right: 8px;

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

    padding: 0;

    border: 0;

    background: transparent;

    color: #b42318;

    font-size: 18px;
    line-height: 1;

    cursor: pointer;
}

/* ==========================================================
   SET NEW PASSWORD PAGE
========================================================== */

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

    display: grid;

    grid-template-columns:
        minmax(400px, 42%)
        minmax(0, 1fr);

    background: #ffffff;
}


/* ==========================================================
   LEFT PANEL
========================================================== */

.portal-new-password-brand {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding:
        60px
        clamp(42px, 5vw, 88px);

    background: var(--portal-primary);

    color: #ffffff;
}


.portal-new-password-brand-content {
    width: 100%;
    max-width: 330px;
}


.portal-new-password-brand-content h1 {
    margin: 0;

    color: #ffffff;

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

    line-height: 1.05;
}


.portal-new-password-brand-description {
    max-width: 260px;

    margin:
        47px
        0
        0;

    color:
        rgba(
            255,
            255,
            255,
            .70
        );

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


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

.portal-password-requirements {
    display: flex;
    flex-direction: column;

    gap: 30px;

    margin-top: 65px;
}


.portal-password-requirement {
    display: flex;
    align-items: center;

    gap: 13px;

    color:
        rgba(
            255,
            255,
            255,
            .55
        );
}


.portal-password-requirement p {
    margin: 0;

    font-size: 13px;
    line-height: 1.3;
}


.portal-requirement-icon {
    width: 20px;
    height: 20px;

    flex:
        0 0
        20px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .25
        );

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .08
        );

    color: transparent;

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

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}


.portal-password-requirement.is-valid {
    color: #ffffff;
}


.portal-password-requirement.is-valid
.portal-requirement-icon {
    border-color: #2ebd75;

    background: #2ebd75;

    color: #ffffff;
}


/* ==========================================================
   RIGHT PANEL
========================================================== */

.portal-new-password-main {
    min-height: 100vh;

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

    padding:
        60px
        45px;

    background: #ffffff;
}


.portal-new-password-wrapper {
    width:
        min(
            100%,
            480px
        );

    text-align: center;
}


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

.portal-new-password-icon {
    width: 100px;
    height: 100px;

    display: grid;
    place-items: center;

    margin:
        0 auto
        27px;

    border-radius: 50%;

    background: #6835c7;

    font-size: 44px;
}


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

.portal-new-password-heading h2 {
    margin: 0;

    color: var(--portal-primary);

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

    line-height: 1.15;
}


.portal-new-password-heading p {
    margin:
        8px
        0
        0;

    color: #788198;

    font-size: 13px;
}


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

.portal-new-password-form {
    margin-top: 29px;

    text-align: left;
}


.portal-new-password-group {
    margin-bottom: 15px;
}


.portal-new-password-group label {
    display: block;

    margin-bottom: 6px;

    color: var(--portal-primary);

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


.portal-new-password-input-wrap {
    width: 100%;

    position: relative;
}


.portal-new-password-input-wrap input {
    width: 100%;
    height: 43px;

    padding:
        0
        45px
        0
        14px;

    border: 0;
    outline: 0;

    border-radius: 8px;

    background: #dfe4f2;

    color: var(--portal-primary);

    font-family: inherit;

    font-size: 11px;

    text-align: left;
}


.portal-new-password-input-wrap input::placeholder {
    color: #adb4c4;
}


.portal-new-password-input-wrap input:focus {
    box-shadow:
        0 0 0 2px
        rgba(
            20,
            50,
            110,
            .10
        );
}


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

.portal-password-eye {
    width: 34px;
    height: 34px;

    position: absolute;

    top: 50%;
    right: 6px;

    transform:
        translateY(-50%);

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;

    background: transparent;

    font-size: 11px;

    cursor: pointer;
}


/* ==========================================================
   STRENGTH BAR
========================================================== */

.portal-password-strength {
    width: 100%;

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap: 9px;

    margin-top: 4px;
}


.portal-password-strength > span {
    color: #8c93a5;

    font-size: 8px;
}


.portal-strength-bars {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 4px;
}


.portal-strength-bar {
    height: 5px;

    border-radius: 50px;

    background: #e7eaf1;
}


.portal-strength-bar.is-weak {
    background: #e05252;
}


.portal-strength-bar.is-medium {
    background: #f5a623;
}


.portal-strength-bar.is-strong {
    background: #2ebd75;
}


#portalStrengthText {
    min-width: 42px;

    color: #999faf;

    font-size: 8px;
    font-weight: 600;

    text-align: right;
}


#portalStrengthText.is-weak {
    color: #e05252;
}


#portalStrengthText.is-medium {
    color: #f5a623;
}


#portalStrengthText.is-strong {
    color: #2ebd75;
}


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

.portal-new-password-submit {
    width: 100%;
    height: 48px;

    margin-top: 2px;

    border: 0;

    border-radius: 8px;

    background: var(--portal-primary);

    color: #ffffff;

    font-family: inherit;

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

    cursor: pointer;

    transition:
        transform .18s ease,
        opacity .18s ease;
}


.portal-new-password-submit:hover {
    transform:
        translateY(-1px);

    opacity: .96;
}


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

.portal-new-password-back {
    width: 100%;
    height: 43px;

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

    margin-top: 11px;

    border-radius: 8px;

    background: #edf0f9;

    color: var(--portal-primary);

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

    text-decoration: none;
}


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

@media (max-width: 900px) {

    .portal-new-password-page {
        grid-template-columns:
            minmax(300px, 40%)
            minmax(0, 1fr);
    }


    .portal-new-password-brand {
        padding:
            45px
            35px;
    }


    .portal-new-password-brand-content h1 {
        font-size: 30px;
    }

}


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

@media (max-width: 650px) {

    .portal-new-password-page {
        display: block;

        min-height: 100vh;

        background: #f6f7fb;
    }


    .portal-new-password-brand {
        min-height: 175px;

        display: block;

        padding:
            30px
            20px
            46px;
    }


    .portal-new-password-brand-content {
        max-width: none;
    }


    .portal-new-password-brand-content h1 {
        font-size: 23px;

        line-height: 1.08;
    }


    .portal-new-password-brand-description {
        max-width: 240px;

        margin-top: 15px;

        font-size: 9px;
    }


    .portal-password-requirements {
        display: none;
    }


    .portal-new-password-main {
        min-height: auto;

        display: block;

        padding:
            0
            13px
            35px;

        background: #f6f7fb;
    }


    .portal-new-password-wrapper {
        position: relative;
        z-index: 20;

        width: 100%;

        margin-bottom: -23px;

        padding:
            24px
            18px
            22px;

        transform:
            translateY(-23px);

        border-radius: 12px;

        background: #ffffff;

        box-shadow:
            0 10px 30px
            rgba(
                13,
                31,
                72,
                .08
            );
    }


    .portal-new-password-icon {
        width: 54px;
        height: 54px;

        margin-bottom: 15px;

        font-size: 21px;
    }


    .portal-new-password-heading h2 {
        font-size: 18px;
    }


    .portal-new-password-heading p {
        margin-top: 5px;

        font-size: 8px;
    }


    .portal-new-password-form {
        margin-top: 20px;
    }


    .portal-new-password-group {
        margin-bottom: 12px;
    }


    .portal-new-password-group label {
        font-size: 7px;
    }


    .portal-new-password-input-wrap input {
        height: 39px;

        font-size: 8px;
    }


    .portal-new-password-submit {
        height: 40px;

        font-size: 8px;
    }


    .portal-new-password-back {
        height: 38px;

        font-size: 8px;
    }

}


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

@media (max-width: 430px) {

    .portal-new-password-brand {
        min-height: 168px;

        padding:
            27px
            16px
            44px;
    }


    .portal-new-password-main {
        padding:
            0
            12px
            28px;
    }


    .portal-new-password-wrapper {
        padding:
            21px
            15px
            19px;
    }

}
.portal-password-eye {
    width: 34px;
    height: 34px;

    position: absolute;
    top: 50%;
    right: 6px;

    transform: translateY(-50%);

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

    padding: 0;

    border: 0;
    outline: none;

    background: transparent;

    color: #7b8498;

    cursor: pointer;
}


.portal-password-eye svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

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


.portal-password-eye:hover {
    color: var(--portal-primary);
}


.portal-eye-closed {
    display: none;
}


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


.portal-password-eye.is-visible .portal-eye-closed {
    display: block;
}
/* ==========================================================
   ACCOUNT ACTIVATION SUCCESS
========================================================== */
/* ==========================================================
   ACCOUNT ACTIVATION SUCCESS PAGE
========================================================== */

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

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

    padding:
        42px
        24px
        55px;

    background: #f4f5f9;
}



/* ==========================================================
   CENTER WHITE PANEL
========================================================== */

.portal-activation-success-card {
    width: min(100%, 590px);
    min-height: calc(100vh - 97px);

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

    padding:
        44px
        42px
        50px;

    background: #ffffff;

    text-align: center;
}



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

.portal-success-icon-outer {
    width: 200px;
    height: 200px;

    display: grid;
    place-items: center;

    margin:
        0 auto
        21px;

    border-radius: 50%;

    background: #e3faee;
}


.portal-success-icon-inner {
    width: 180px;
    height: 180px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #cef6e2;
}


.portal-success-icon-inner svg {
    width: 72px;
    height: 72px;

    fill: none;

    stroke: #07ad43;

    stroke-width: 2.8;

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



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

.portal-success-heading {
    width: 100%;
}


.portal-success-heading h1 {
    margin: 0;

    color: var(--portal-primary);

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

    line-height: 1.2;
}


.portal-success-heading h1 span {
    display: inline-block;

    margin-left: 2px;

    font-size: 25px;
}


.portal-success-heading p {
    margin:
        8px
        0
        0;

    color: #81899c;

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

    line-height: 1.5;
}



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

.portal-success-access-card {
    width: 100%;

    margin-top: 23px;

    padding:
        17px
        19px
        24px;

    border-top:
        5px solid
        var(--portal-accent);

    border-radius:
        8px
        8px
        10px
        10px;

    background: #f0f2fa;

    text-align: left;
}


.portal-success-access-card h2 {
    margin:
        0
        0
        18px;

    color: var(--portal-primary);

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



/* ==========================================================
   ACCESS GRID
========================================================== */

.portal-success-access-grid {
    width: 100%;

    display: grid;

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

    column-gap: 45px;
    row-gap: 20px;
}


.portal-success-access-item {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 8px;

    color: #333a4c;

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

    line-height: 1.3;
}



/* ==========================================================
   ACCESS ICONS
========================================================== */

.portal-success-access-icon {
    width: 17px;
    height: 17px;

    flex:
        0 0
        17px;

    display: grid;
    place-items: center;

    color: #697388;
}


.portal-success-access-icon svg {
    width: 14px;
    height: 14px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

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



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

.portal-success-primary-button {
    width: 100%;
    height: 52px;

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

    gap: 6px;

    margin-top: 20px;

    border-radius: 7px;

    background: var(--portal-accent);

    color: var(--portal-primary);

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

    text-decoration: none;

    transition:
        transform .18s ease,
        opacity .18s ease;
}


.portal-success-primary-button svg {
    width: 12px;
    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

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


.portal-success-primary-button:hover {
    transform: translateY(-1px);

    opacity: .94;
}



/* ==========================================================
   SECONDARY BUTTON
========================================================== */

.portal-success-secondary-button {
    width: 100%;
    height: 44px;

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

    margin-top: 12px;

    border-radius: 7px;

    background: #eceff8;

    color: var(--portal-primary);

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

    text-decoration: none;

    transition:
        background .18s ease;
}


.portal-success-secondary-button:hover {
    background: #e4e8f3;
}



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

@media (max-width: 900px) {

    .portal-activation-success-page {
        padding:
            35px
            20px;
    }


    .portal-activation-success-card {
        min-height: calc(100vh - 70px);

        padding:
            38px
            34px
            42px;
    }


    .portal-success-icon-outer {
        width: 120px;
        height: 120px;
    }


    .portal-success-icon-inner {
        width: 94px;
        height: 94px;
    }


    .portal-success-icon-inner svg {
        width: 50px;
        height: 50px;
    }

}



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

@media (max-width: 650px) {

    .portal-activation-success-page {
        min-height: 100vh;

        padding:
            24px
            13px;

        background: #f4f5f9;
    }


    .portal-activation-success-card {
        width: 100%;
        min-height: auto;

        padding:
            28px
            17px
            25px;

        border-radius: 12px;

        box-shadow:
            0 10px 30px
            rgba(
                13,
                31,
                72,
                .06
            );
    }


    .portal-success-icon-outer {
        width: 91px;
        height: 91px;

        margin-bottom: 16px;
    }


    .portal-success-icon-inner {
        width: 71px;
        height: 71px;
    }


    .portal-success-icon-inner svg {
        width: 38px;
        height: 38px;
    }


    .portal-success-heading h1 {
        font-size: 19px;
    }


    .portal-success-heading h1 span {
        font-size: 16px;
    }


    .portal-success-heading p {
        margin-top: 6px;

        font-size: 7.5px;
    }


    .portal-success-access-card {
        margin-top: 19px;

        padding:
            14px
            13px
            18px;

        border-top-width: 3px;
    }


    .portal-success-access-card h2 {
        margin-bottom: 14px;

        font-size: 7.5px;
    }


    .portal-success-access-grid {
        column-gap: 14px;
        row-gap: 15px;
    }


    .portal-success-access-item {
        gap: 5px;

        font-size: 6.8px;
    }


    .portal-success-access-icon {
        width: 14px;
        height: 14px;

        flex-basis: 14px;
    }


    .portal-success-access-icon svg {
        width: 12px;
        height: 12px;
    }


    .portal-success-primary-button {
        height: 40px;

        margin-top: 15px;

        font-size: 7.5px;
    }


    .portal-success-primary-button svg {
        width: 10px;
        height: 10px;
    }


    .portal-success-secondary-button {
        height: 37px;

        margin-top: 9px;

        font-size: 7px;
    }

}



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

@media (max-width: 430px) {

    .portal-activation-success-page {
        padding:
            18px
            12px;
    }


    .portal-activation-success-card {
        padding:
            24px
            14px
            22px;
    }


    .portal-success-icon-outer {
        width: 82px;
        height: 82px;
    }


    .portal-success-icon-inner {
        width: 64px;
        height: 64px;
    }


    .portal-success-icon-inner svg {
        width: 34px;
        height: 34px;
    }


    .portal-success-heading h1 {
        font-size: 18px;
    }


    .portal-success-heading p {
        font-size: 7px;
    }


    .portal-success-access-grid {
        column-gap: 9px;
        row-gap: 14px;
    }


    .portal-success-access-item {
        font-size: 6.3px;
    }


    .portal-success-primary-button {
        height: 39px;
    }


    .portal-success-secondary-button {
        height: 36px;
    }

}
/* ==========================================================
   ACTIVATE ACCOUNT
   LEFT SIDE REUSES LOGIN CLASSES
========================================================== */

.portal-activate-feature-title {
    display: block;

    margin-bottom: 15px;

    color: #ffffff;

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



/* ==========================================================
   RIGHT PANEL
========================================================== */

.portal-activate-main {
    min-height: 100vh;

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

    padding:
        60px
        45px;

    background: #ffffff;
}


.portal-activate-wrapper {
    width:
        min(
            100%,
            520px
        );

    text-align: center;
}



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

.portal-activate-icon {
    width: 100px;
    height: 100px;
    font-size: 44px;

    display: grid;
    place-items: center;

    margin:
        0 auto
        25px;

    border-radius: 50%;

    background: var(--portal-primary);

    color: var(--portal-accent);
}





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

.portal-activate-heading h2 {
    margin: 0;

    color: var(--portal-primary);

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

    line-height: 1.15;
}


.portal-activate-heading p {
    max-width: 390px;

    margin:
        8px auto
        0;

    color: #7f879b;

    font-size: 13px;

    line-height: 1.5;
}



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

.portal-activate-form {
    margin-top: 30px;

    text-align: left;
}


.portal-activate-group {
    width: 100%;
}


.portal-activate-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--portal-primary);

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



/* ==========================================================
   ACTIVATION CODE BOXES
========================================================== */

.portal-activation-code {
    width: 100%;

    display: grid;

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

    gap: 10px;
}


.portal-activation-box {
    width: 100%;
    height: 72px;

    padding: 0;

    border: 2px solid transparent;

    outline: none;

    border-radius: 8px;

    font-family: inherit;

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

    text-align: center;
    text-transform: uppercase;

    transition:
        background .18s ease,
        color .18s ease,
        border-color .18s ease;

    caret-color: var(--portal-primary);
}


/* ==========================================================
   EMPTY BOX
========================================================== */

.portal-activation-box:not(.has-value) {
    background: #dfe4f2 !important;

    color: var(--portal-primary) !important;
}


/* ==========================================================
   FILLED BOX
========================================================== */

.portal-activation-box.has-value {
    background: var(--portal-primary) !important;

    color: #ffffff !important;

    caret-color: #ffffff;
}


/* ==========================================================
   EMPTY BOX FOCUS
========================================================== */

.portal-activation-box:not(.has-value):focus {
    background: #dfe4f2 !important;

    border-color: var(--portal-primary);

    color: var(--portal-primary) !important;
}


/* ==========================================================
   FILLED BOX FOCUS
========================================================== */

.portal-activation-box.has-value:focus {
    background: var(--portal-primary) !important;

    border-color: var(--portal-primary);

    color: #ffffff !important;
}


/* ==========================================================
   CODE NOTE
========================================================== */

.portal-activation-code-note {
    width: 100%;

    display: grid;

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

    align-items: center;

    gap: 13px;

    margin-top: 7px;
}


.portal-activation-code-note > span {
    height: 1px;

    background: #e4e7ef;
}


.portal-activation-code-note p {
    margin: 0;

    color: #b0b5c2;

    font-size: 11px;

    line-height: 1.35;

    text-align: center;
}



/* ==========================================================
   STUDENT / STAFF ID
========================================================== */

.portal-activate-id-group {
    margin-top: 10px;
}


.portal-activate-id-group input {
    width: 100%;
    height: 42px;

    padding:
        0
        14px;

    border: 0;

    outline: none;

    border-radius: 7px;

    background: #dfe4f2;

    color: var(--portal-primary);

    font-family: inherit;

    font-size: 11px;

    text-align: left;
}


.portal-activate-id-group input::placeholder {
    color: #abb3c3;
}


.portal-activate-id-group input:focus {
    box-shadow:
        0 0 0 2px
        rgba(
            11,
            30,
            70,
            .09
        );
}



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

.portal-activate-submit {
    width: 100%;
    height:52px;

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

    gap: 7px;

    margin-top: 8px;

    border: 0;

    border-radius: 8px;

    background: var(--portal-accent);

    color: var(--portal-primary);

    font-family: inherit;

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

    cursor: pointer;

    transition:
        transform .18s ease,
        opacity .18s ease;
}


.portal-activate-submit svg {
    width: 12px;
    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

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


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

    opacity: .95;
}



/* ==========================================================
   SUPPORT
========================================================== */

.portal-activate-help-text {
    margin:
        13px
        0
        6px;

    color: #a9afbd;

    font-size: 8px;

    text-align: center;
}


.portal-activate-call {
    width:
        min(
            100%,
            245px
        );

    height: 35px;

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

    gap: 5px;

    margin:
        0 auto;

    border-radius: 6px;

    background: #edf0f8;

    color: var(--portal-primary);

    font-size: 8px;
    font-weight: 600;

    text-decoration: none;
}


.portal-activate-call svg {
    width: 11px;
    height: 11px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

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



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

@media (max-width: 900px) {

    .portal-activate-main {
        padding:
            50px
            30px;
    }


    .portal-activate-wrapper {
        max-width: 470px;
    }


    .portal-activation-code {
        gap: 7px;
    }


    .portal-activation-box {
        height: 54px;
    }

}



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

@media (max-width: 650px) {

    /*
    |--------------------------------------------------------------------------
    | portal-auth-brand is already controlled by your LOGIN responsive CSS.
    | We deliberately do not create another left panel class here.
    |--------------------------------------------------------------------------
    */


    .portal-activate-main {
        min-height: auto;

        display: block;

        padding:
            0
            13px
            35px;

        background: #f6f7fb;
    }


    .portal-activate-wrapper {
        position: relative;
        z-index: 20;

        width: 100%;

        margin-bottom: -23px;

        padding:
            24px
            17px
            22px;

        transform:
            translateY(-23px);

        border-radius: 12px;

        background: #ffffff;

        box-shadow:
            0 10px 30px
            rgba(
                13,
                31,
                72,
                .08
            );
    }


    .portal-activate-icon {
        width: 53px;
        height: 53px;

        margin-bottom: 14px;
    }


    .portal-activate-icon svg {
        width: 25px;
        height: 25px;
    }


    .portal-activate-heading h2 {
        font-size: 18px;
    }


    .portal-activate-heading p {
        max-width: 280px;

        margin-top: 5px;

        font-size: 8px;
    }


    .portal-activate-form {
        margin-top: 20px;
    }


    .portal-activate-group label {
        font-size: 7px;
    }


    .portal-activation-code {
        gap: 6px;
    }


    .portal-activation-box {
        height: 45px;

        border-radius: 6px;

        font-size: 15px;
    }


    .portal-activation-code-note {
        gap: 7px;

        margin-top: 6px;
    }


    .portal-activation-code-note p {
        font-size: 5.8px;
    }


    .portal-activate-id-group input {
        height: 38px;

        font-size: 7px;
    }


    .portal-activate-submit {
        height: 40px;

        font-size: 8px;
    }


    .portal-activate-help-text {
        margin-top: 10px;

        font-size: 6px;
    }


    .portal-activate-call {
        height: 32px;

        font-size: 7px;
    }

}



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

@media (max-width: 430px) {

    .portal-activate-main {
        padding:
            0
            12px
            28px;
    }


    .portal-activate-wrapper {
        padding:
            21px
            14px
            19px;
    }


    .portal-activation-code {
        gap: 5px;
    }


    .portal-activation-box {
        height: 42px;

        font-size: 14px;
    }

}
/* ==========================================================
   PROFILE ACTIVATION - STEP 2
========================================================== */


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

.portal-profile-brand-content {
    width: 100%;

    margin-top:
        clamp(
            100px,
            18vh,
            170px
        );
}


.portal-profile-step-text {
    display: block;

    margin-bottom: 12px;

    color:
        rgba(
            255,
            255,
            255,
            .65
        );

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



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

.portal-profile-progress {
    width: 100%;
    max-width: 330px;

    height: 6px;

    overflow: hidden;

    margin-bottom: 28px;

    border-radius: 20px;

    background:
        rgba(
            61,
            101,
            190,
            .45
        );
}


.portal-profile-progress span {
    width: 66.666%;
    height: 100%;

    display: block;

    border-radius: inherit;

    background: var(--portal-accent);
}



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

.portal-profile-brand-content h1 {
    margin: 0;

    color: #ffffff;

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

    line-height: 1.05;
}


.portal-profile-brand-description {
    max-width: 280px;

    margin:
        35px
        0
        0;

    color:
        rgba(
            255,
            255,
            255,
            .65
        );

    font-size: 13px;

    line-height: 1.45;
}



/* ==========================================================
   PRIVACY
========================================================== */

.portal-profile-privacy {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    margin-top: 70px;

    color:
        rgba(
            255,
            255,
            255,
            .48
        );

    font-size: 10px;

    line-height: 1.4;
}


.portal-profile-privacy svg {
    width: 14px;
    height: 14px;

    flex:
        0 0
        14px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

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



/* ==========================================================
   RIGHT PANEL
========================================================== */

.portal-profile-main {
    min-height: 100vh;

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

    padding:
        55px
        45px;

    background: #ffffff;
}


.portal-profile-wrapper {
    width:
        min(
            100%,
            520px
        );
}



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

.portal-profile-form {
    width: 100%;
}


/* ==========================================================
   PROFILE PHOTO
========================================================== */

.portal-profile-photo-section {
    margin-bottom: 22px;
    text-align: center;
}


.portal-profile-photo {
    width: 100px;
    height: 100px;

    position: relative;

    display: block;

    margin: 0 auto;

    cursor: pointer;
}


.portal-profile-photo-preview {
    width: 100px;
    height: 100px;

    overflow: hidden;

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

    border-radius: 50%;

    background: #dfe4f2;
}


/* CAMERA ICON ONLY WHEN NO IMAGE */

.portal-profile-camera-emoji {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    font-size: 44px;
    line-height: 1;

    text-align: center;
}


/* ACTUAL SELECTED IMAGE */

.portal-profile-photo-preview img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}


/* PLUS BUTTON */

.portal-profile-photo-add {
    width: 30px;
    height: 30px;

    position: absolute;

    right: -2px;
    bottom: 4px;

    display: grid;
    place-items: center;



    border-radius: 50%;

    background: var(--portal-primary);

    color: #ffffff;
}


.portal-profile-photo-add svg {
    width: 14px;
    height: 14px;

    fill: none;

    stroke: currentColor;

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


.portal-profile-photo-section p {
    margin: 9px 0 0;

    color: #8b93a5;

    font-size: 11px;
}

/* ==========================================================
   TWO COLUMN GRID
========================================================== */

.portal-profile-grid {
    display: grid;

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

    gap: 18px;
}



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

.portal-profile-group {
    min-width: 0;

    margin-bottom: 18px;
}


.portal-profile-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--portal-primary);

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


.portal-profile-group input,
.portal-profile-group select {
    width: 100%;
    height: 44px;

    padding:
        0
        14px;

    border: 0;
    outline: 0;

    border-radius: 7px;

    background: #dfe4f2;

    color: var(--portal-primary);

    font-family: inherit;

    font-size: 12px;

    text-align: left;
}


.portal-profile-group input::placeholder {
    color: #adb4c4;
}


.portal-profile-group select {
    color: #a5adbc;

    cursor: pointer;
}


.portal-profile-group input:focus,
.portal-profile-group select:focus {
    box-shadow:
        0 0 0 2px
        rgba(
            10,
            30,
            75,
            .08
        );
}



/* ==========================================================
   FULL WIDTH FIELD
========================================================== */

.portal-profile-full {
    width: 100%;
}



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

.portal-profile-password-title {
    margin:
        -3px
        0
        7px;

    color: var(--portal-primary);

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



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

.portal-profile-password-wrap {
    position: relative;

    width: 100%;
}


.portal-profile-password-wrap input {
    padding-right: 42px;
}



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

.portal-profile-eye {
    width: 32px;
    height: 32px;

    position: absolute;

    top: 50%;
    right: 5px;

    transform:
        translateY(-50%);

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

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #798399;

    cursor: pointer;
}


.portal-profile-eye svg {
    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

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


.portal-profile-eye:hover {
    color: var(--portal-primary);
}


.portal-profile-eye .portal-eye-closed {
    display: none;
}


.portal-profile-eye.is-visible
.portal-eye-open {
    display: none;
}


.portal-profile-eye.is-visible
.portal-eye-closed {
    display: block;
}



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

.portal-profile-continue {
    width: 100%;
    height: 52px;

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

    gap: 7px;

    margin-top: -1px;

    border: 0;

    border-radius: 8px;

    background: var(--portal-primary);

    color: #ffffff;

    font-family: inherit;

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

    cursor: pointer;

    transition:
        opacity .18s ease,
        transform .18s ease;
}


.portal-profile-continue svg {
    width: 12px;
    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

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


.portal-profile-continue:hover {
    opacity: .96;

    transform:
        translateY(-1px);
}



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

.portal-profile-back {
    width: 100%;
    height: 40px;

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

    margin-top: 11px;

    border-radius: 7px;

    background: #edf0f8;

    color: #667086;

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

    text-decoration: none;
}



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

@media (max-width: 900px) {

    .portal-profile-main {
        padding:
            45px
            30px;
    }


    .portal-profile-brand-content {
        margin-top: 90px;
    }


    .portal-profile-brand-content h1 {
        font-size: 31px;
    }

}



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

@media (max-width: 650px) {

    .portal-profile-brand-content {
        margin-top: 0;
    }


    .portal-profile-step-text {
        font-size: 7px;
    }


    .portal-profile-progress {
        max-width: 220px;

        height: 4px;

        margin-bottom: 14px;
    }


    .portal-profile-brand-content h1 {
        font-size: 22px;
    }


    .portal-profile-brand-description {
        max-width: 250px;

        margin-top: 11px;

        font-size: 8px;
    }


    .portal-profile-privacy {
        display: none;
    }


    .portal-profile-main {
        min-height: auto;

        display: block;

        padding:
            0
            13px
            35px;

        background: #f6f7fb;
    }


    .portal-profile-wrapper {
        position: relative;

        z-index: 20;

        width: 100%;

        margin-bottom: -23px;

        padding:
            22px
            17px
            20px;

        transform:
            translateY(-23px);

        border-radius: 12px;

        background: #ffffff;

        box-shadow:
            0 10px 30px
            rgba(
                13,
                31,
                72,
                .08
            );
    }


    .portal-profile-photo-section {
        margin-bottom: 17px;
    }


    .portal-profile-photo,
    .portal-profile-photo-preview {
        width: 62px;
        height: 62px;
    }


    .portal-profile-camera-icon {
        width: 23px;
        height: 23px;
    }


    .portal-profile-photo-add {
        width: 21px;
        height: 21px;
    }


    .portal-profile-photo-section p {
        font-size: 7px;
    }


    .portal-profile-grid {
        gap: 10px;
    }


    .portal-profile-group {
        margin-bottom: 12px;
    }


    .portal-profile-group label {
        margin-bottom: 5px;

        font-size: 7px;
    }


    .portal-profile-group input,
    .portal-profile-group select {
        height: 38px;

        padding:
            0
            10px;

        font-size: 7px;
    }


    .portal-profile-password-title {
        font-size: 8px;
    }


    .portal-profile-password-wrap input {
        padding-right: 36px;
    }


    .portal-profile-eye {
        width: 29px;
        height: 29px;
    }


    .portal-profile-eye svg {
        width: 13px;
        height: 13px;
    }


    .portal-profile-continue {
        height: 41px;

        font-size: 8px;
    }


    .portal-profile-back {
        height: 37px;

        font-size: 7px;
    }

}



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

@media (max-width: 430px) {

    .portal-profile-main {
        padding:
            0
            12px
            28px;
    }


    .portal-profile-wrapper {
        padding:
            20px
            14px
            18px;
    }


    .portal-profile-grid {
        gap: 8px;
    }


    .portal-profile-group input,
    .portal-profile-group select {
        height: 36px;
    }

}
