@font-face {
    font-family: BDO;
    src: url('../fonts/BDOGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: BDO;
    src: url('../fonts/BDOGrotesk-DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

:root {
    --red: #b9002c;
    --ink: #202020;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: BDO, Arial, sans-serif;
    font-synthesis: none;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

button,
a,
input {
    -webkit-tap-highlight-color: transparent;
}

strong,
h1,
h2,
h3 {
    font-weight: 600;
}

svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid #247caa;
    outline-offset: 4px;
}

/* Flow layout lets the page grow when text wraps or a form message appears. */
.portal {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(350px, 1fr);
    align-items: start;
    gap: 0;
    padding: 46px 4vw 18px 0;
}

.hero {
    position: relative;
    width: calc(100% + 68px);
    min-height: 470px;
    overflow: hidden;
    border-radius: 0 28px 36px 0;
    background: linear-gradient(90deg, #0009, #0004), url('images/loginpageimage/office.svg') center/cover;
    color: #fff;
    padding: 32px calc(68px + 3vw) 72px 4vw;
}

.brand {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    top: 20px;
    max-width: 100%;
}

    .brand:hover {
        text-decoration: none;
    }

.brand-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex: none;
}

.brand strong {
    width: 500px;
    display: block;
    font-size: clamp(25px, 2.3vw, 36px);
    line-height: 1.15;
}

.brand small {
    display: block;
    font-size: clamp(13px, 1.2vw, 17px);
    margin-top: 5px;
}

.hero-copy {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

    .hero-copy h1 {
        font-size: clamp(42px, 4.2vw, 64px);
        line-height: 1.05;
        letter-spacing: -1.5px;
        margin: 0 0 12px;
        overflow-wrap: break-word;
    }

    .hero-copy h2 {
        font-size: clamp(18px, 1.7vw, 25px);
        line-height: 1.3;
        letter-spacing: -.3px;
        margin: 0 0 8px;
    }

.tagline {
    font-size: clamp(15px, 1.3vw, 19px);
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
}

.benefits {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    max-width: 490px;
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

    .benefits li {
        flex: 1;
        min-width: 0;
        text-align: center;
    }

        .benefits li > span {
            display: grid;
            place-items: center;
            border: 2px solid #fff;
            border-radius: 50%;
            width: 64px;
            height: 64px;
            margin: auto;
        }

    .benefits svg {
        width: 37px;
        height: 37px;
        stroke-width: 2;
    }

    .benefits strong {
        display: block;
        font-size: 13px;
        line-height: 1.3;
        font-weight: 400;
        margin-top: 10px;
    }

.ribbons {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 22%;
    stroke: none;
}

.help {
    position: absolute;
    top: 20px;
    right: 4vw;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 32px;
    font-size: 14px;
}

    .help svg {
        color: #159b43;
        width: 25px;
        height: 25px;
        fill: currentColor;
        stroke: none;
        flex: none;
    }

    .help strong {
        color: var(--red);
    }

.login-card {
    position: relative;
    z-index: 2;
    margin: -12px 0 0;
    width: 100%;
    max-width: 510px;
    justify-self: end;
    padding: 22px 32px 18px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 8px 24px #0002, 0 0 8px #0000000b;
}

.portal-label {
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    line-height: 1.5;
    margin: 0 0 8px;
}

h2 {
    font-size: 36px;
    line-height: 1.15;
    margin: 0 0 7px;
    letter-spacing: -.7px;
}

.subtitle {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 14px;
    color: #535a60;
}

label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    line-height: 1.2;
    margin: 0 0 6px;
}

input {
    height: 48px;
    border: 1px solid #90979b;
    border-radius: 28px;
    padding: 0 16px;
    width: 100%;
    font-size: 16px;
    background: #fff;
    color: var(--ink);
    margin: 0 0 10px;
}

    input::placeholder {
        color: #70767b;
    }

    input:focus {
        border-color: var(--red);
        outline: 2px solid #b9002c22;
        outline-offset: 2px;
    }

.forgot-password {
    display: block;
    width: fit-content;
    min-height: 32px;
    background: none;
    border: 0;
    padding: 4px 0;
    margin: -7px 0 10px auto;
    font-size: 13px;
    font-weight: 400;
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

    .forgot-password:hover {
        color: #7c0018;
    }

.submit {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 28px;
    background: var(--red);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    min-height: 48px;
    letter-spacing: .4px;
    transition: background .2s;
}

    .submit:hover {
        background: #970023;
    }

    .submit:disabled {
        opacity: .7;
        cursor: wait;
    }

.support {
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 12px;
    overflow-wrap: anywhere;
}

    .support p {
        margin: 0;
    }

    .support a {
        text-decoration: underline;
        text-decoration-color: #aab0b4;
        text-underline-offset: 3px;
    }

        .support a:hover {
            color: var(--red);
        }

.divider {
    margin: 0 5px;
}

.copyright {
    margin: 12px 0 0;
    text-align: center;
    font-size: 11px;
    color: #5c656a;
}

#form-status {
    padding: 12px;
    border-radius: 10px;
    background: #f7edf0;
    font-size: 13px;
    line-height: 1.5;
}

.feature-slider {
    min-width: 0;
}

.features {
    display: flex;
    gap: 20px;
    padding: 12px 4vw;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}

    .features::-webkit-scrollbar {
        display: none;
    }

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid #adb3b7;
    border-radius: 18px;
    padding: 18px;
    flex: 0 0 clamp(340px, 31vw, 490px);
    min-width: 0;
    min-height: 144px;
    background: #fff;
    color: #19262e;
    text-align: left;
    font: inherit;
    position: relative;
    transition: border-color .2s, background .2s;
}

    .feature:hover {
        border-color: var(--red);
        background: #fffafb;
    }

    .feature:focus-visible {
        outline-offset: -4px;
    }

.feature-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    flex: none;
}

    .feature-icon svg {
        width: 44px;
        height: 44px;
        stroke-width: 1.8;
    }

.feature-copy {
    display: block;
    min-width: 0;
}

.feature-heading {
    display: block;
    margin-bottom: 7px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -.4px;
    font-weight: 600;
}

.feature-summary {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: #535a60;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0 4vw 12px;
    color: #626b70;
    font-size: 11px;
}

    .slider-controls > div {
        display: flex;
        gap: 7px;
    }

    .slider-controls button {
        border: 1px solid #d5dade;
        background: #fff;
        color: #26323a;
        border-radius: 24px;
        min-height: 36px;
        min-width: 40px;
        padding: 5px 12px;
        font-size: 12px;
    }

        .slider-controls button:hover {
            border-color: var(--red);
            color: var(--red);
        }

footer {
    background: #14232b;
    color: #d2d7da;
    padding: 20px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 12px;
}

    footer p {
        margin: 0;
    }

    footer nav {
        display: flex;
        gap: 13px;
        align-items: center;
    }

    footer button {
        background: none;
        padding: 0;
        border: 0;
        color: inherit;
        font: inherit;
    }

        footer button:hover {
            text-decoration: underline;
        }

dialog {
    border: 0;
    border-radius: 22px;
    max-width: 480px;
    width: calc(100% - 32px);
    max-height: 85dvh;
    overflow-y: auto;
    padding: 34px;
    box-shadow: 0 20px 80px #0004;
}

    dialog::backdrop {
        background: #10212bb3;
    }

    dialog h2 {
        font-size: 30px;
        padding-right: 10px;
    }

    dialog p {
        font-size: 15px;
        line-height: 1.6;
    }

.close-dialog,
.close-feature,
.close-reset {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: 0;
    font-size: 28px;
    color: #46535b;
}

#feature-dialog {
    max-width: 570px;
}

    #feature-dialog .feature-icon {
        margin-bottom: 20px;
    }

.feature-eyebrow {
    font-size: 11px;
    letter-spacing: 1.4px;
    color: var(--red);
    font-weight: 600;
}

#feature-title {
    margin: 8px 0 16px;
}

#feature-details {
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #4d5860;
}

    #feature-details li {
        margin: 9px 0;
    }

.feature-contact {
    display: block;
    border-top: 1px solid #e6e6e6;
    margin-top: 20px;
    padding-top: 16px;
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

@media(min-width:1600px) {
    .portal {
        grid-template-columns: minmax(0, 1.25fr) minmax(420px, 1fr);
        padding-top: 56px;
    }

    .hero {
        min-height: 520px;
        padding-top: 40px;
    }

    .hero-copy {
        margin-top: 40px;
    }

    .login-card {
        padding: 80px 36px;
    }

    .benefits {
        margin-top: 34px;
    }
}

@media(max-width:1000px) and (min-width:701px) {
    .portal {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
        padding-right: 24px;
    }

    .hero {
        padding-left: 24px;
        padding-right: 88px;
    }

    .brand {
        gap: 12px;
    }

    .brand-logo {
        width: 54px;
        height: 54px;
    }

    .brand strong {
        font-size: 22px;
    }

    .brand small {
        font-size: 11px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-copy h2 {
        font-size: 19px;
    }

    .benefits {
        gap: 8px;
    }

        .benefits li > span {
            width: 49px;
            height: 49px;
        }

        .benefits svg {
            width: 29px;
            height: 29px;
        }

        .benefits strong {
            font-size: 11px;
        }

    .login-card {
        padding: 24px;
    }

    .help {
        right: 24px;
    }
}

@media(max-width:700px) {
    .portal {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 0 8px;
    }

    .hero {
        width: 100%;
        min-height: 0;
        border-radius: 0 0 24px 24px;
        padding: 17px 22px 44px;
    }

    .brand {
        gap: 10px;
    }

    .brand-logo {
        width: 43px;
        height: 43px;
    }

    .brand strong {
        font-size: 22px;
    }

    .brand small {
        font-size: 11px;
        margin-top: 3px;
    }

    .hero-copy {
        margin-top: 16px;
    }

        .hero-copy h1 {
            font-size: 38px;
            letter-spacing: -1px;
            margin-bottom: 7px;
        }

        .hero-copy h2 {
            font-size: 16px;
            margin-bottom: 5px;
        }

    .tagline {
        font-size: 14px;
    }

    /* Prioritize sign-in and the feature cards on narrow screens. */
    .benefits {
        display: none;
    }

    .ribbons {
        height: 24%;
    }

    .login-card {
        margin: -24px 16px 0;
        width: calc(100% - 32px);
        max-width: 510px;
        padding: 20px 22px 16px;
        border-radius: 22px;
    }

    .portal-label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 14px;
    }

    label {
        font-size: 11px;
    }

    input {
        height: 44px;
        margin-bottom: 10px;
    }

    .forgot-password {
        margin-bottom: 5px;
        min-height: 34px;
    }

    .submit {
        min-height: 44px;
        font-size: 15px;
    }

    .support {
        font-size: 11px;
        margin-top: 12px;
        line-height: 1.6;
    }

    .copyright {
        font-size: 10px;
        margin-top: 9px;
    }

    .help {
        position: relative;
        top: auto;
        right: auto;
        order: 1;
        font-size: 12px;
        gap: 7px;
        margin: 10px 16px 0;
        min-height: 30px;
    }

        .help svg {
            width: 23px;
            height: 23px;
        }

    .features {
        padding: 8px 16px 12px;
        gap: 14px;
    }

    .feature {
        flex-basis: min(380px, 88vw);
        min-height: 140px;
        padding: 16px;
        gap: 13px;
    }

    .feature-icon {
        width: 54px;
        height: 54px;
    }

        .feature-icon svg {
            width: 36px;
            height: 36px;
        }

    .feature-heading {
        font-size: 18px;
    }

    .feature-summary {
        font-size: 12px;
    }

    .slider-controls {
        padding: 0 16px 14px;
        gap: 8px;
    }

        .slider-controls > span {
            max-width: 165px;
            font-size: 10px;
            line-height: 1.5;
        }

        .slider-controls button {
            min-height: 40px;
            min-width: 36px;
            padding: 4px 10px;
        }

    footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 11px;
    }

    dialog {
        padding: 28px;
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* Wider desktop artwork, with the form layered above it. */
@media (min-width: 701px) {
    .portal {
        min-height: 520px;
    }

    .hero {
        position: absolute;
        inset: 0 auto 0 0;
        width: 70.6%;
        min-height: 0;
        border-radius: 0 28px 42px 0;
        overflow: hidden;
        background: linear-gradient(90deg, #0008, #0003), url('images/loginpageimage/office.svg') center / cover;
        color: white;
        padding: 62px 4.8vw;
    }

        .hero .brand,
        .hero-copy,
        .benefits {
            max-width: min(490px, 43vw);
        }

    .login-card {
        grid-column: 2;
    }

    .help {
        z-index: 3;
        background: white;
        border-radius: 20px;
        padding: 0 8px;
    }
}

.progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 11px;
    font-weight: 600;
}

#step-label {
    flex: none;
}

.progress-line {
    flex: 1;
    height: 1px;
    background: #737373;
}

.progress i {
    flex: none;
    width: 8px;
    height: 8px;
    border: 1px solid #777;
    border-radius: 50%;
}

    .progress i.active {
        background: var(--red);
        border-color: var(--red);
    }

.field-help {
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 20px;
}

    .field-help a {
        white-space: nowrap;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

.back {
    display: block;
    min-height: 44px;
    padding: 8px 16px;
    margin: 12px auto 0;
    background: none;
    border: 0;
    color: var(--red);
    font-size: 15px;
}

    .back:hover {
        text-decoration: underline;
    }

@media (max-width: 700px) {
    .progress {
        margin-bottom: 16px;
        font-size: 10px;
    }

    .field-help {
        font-size: 11px;
        margin-bottom: 16px;
    }
}

/* Keep the footer below the initial view, with space above it. */
body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

    body > main {
        flex: 0 0 auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 0;
    }

    body > footer {
        flex: 0 0 auto;
        align-items: flex-start;
    }

@media (max-width: 700px) {
    body > footer {
        align-items: center;
        justify-content: flex-start;
    }
}

/* Let the hero absorb spare desktop height, keeping artwork at the top. */
@media (min-width: 701px) {
    body > main {
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }

        body > main > .portal {
            flex: 1 0 auto;
        }

        body > main > .feature-slider {
            flex: 0 0 auto;
        }

    .portal > .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .portal > .login-card {
        align-self: center;
    }
}

/* Bring the desktop login panel further over the hero artwork. */
@media (min-width: 1101px) {
    .portal > .login-card {
        transform: translateX(-4vw);
    }
}

/* Raise only the brand block; preserve the heading and benefit positions. */
@media (min-width: 701px) {
    .hero > .brand {
        transform: translateY(-180px);
    }
}

.validation-error {
    color: #dc3545;
}
/*Login Session Modal CSS*/
#LoginSessionModal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

    #LoginSessionModal.show {
        display: block !important;
    }

    #LoginSessionModal .login-session-box {
        position: absolute;
        width: 600px;
        max-width: 90%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    /* Header */
    #LoginSessionModal .login-session-header {
        position: relative;
        background: #8B0000;
        color: #fff;
        padding: 20px 50px 20px 20px;
        text-align: center;
    }

        #LoginSessionModal .login-session-header h3 {
            margin: 0;
            font-size: 16px;
        }

    /* Close button */
    #LoginSessionModal .login-closebtn {
        position: absolute;
        right: 15px;
        top: 15px;
        border: none;
        background: transparent;
        color: #fff;
        font-size: 25px;
        line-height: 1;
        cursor: pointer;
        font-weight: 700;
    }

        #LoginSessionModal .login-closebtn:hover {
            opacity: 0.8;
        }

    /* Body */
    #LoginSessionModal .login-session-body {
        padding: 30px 20px 20px;
        text-align: center;
    }

        #LoginSessionModal .login-session-body h3 {
            margin: 0;
            color: #333;
            font-size: 16px;
            font-weight: 500;
        }

    /* Footer */
    #LoginSessionModal .login-session-footer {
        padding: 10px 20px 25px;
        text-align: center;
        border-top: 1px solid #e5e5e5;
    }

    /* Button */
    #LoginSessionModal .login-session-btn {
        background: #1ab394;
        color: #FFFFFF;
        border: #1ab394;
        border-radius: 4px;
        cursor: pointer;
        padding: 6px 12px;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.42857143;
    }

        #LoginSessionModal .login-session-btn:hover {
            background: #18a689;
            color: #FFFFFF;
            border: #18a689;
        }

/* Forgot Password Modal */

.forgot-password-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

 .forgot-password-modal.show {
        display: block !important;
    }

 .forgot-password-modal .forgot-password-box {
        position: absolute;
        width: 350px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        border-radius:7px;
        overflow: hidden;
        box-shadow: 0 20px 80px #0004;
    }

    .forgot-password-modal .forgot-password-body {
        padding: 20px;
        text-align: center;
        border:1px solid red;
    }

    .forgot-password-modal .forgot-password-close {
        position: absolute;
        right: 5px;
        top: 15px;
        z-index: 2;
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        color: red;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
    }

        .forgot-password-modal .forgot-password-close:hover {
            color: var(--red);
        }

    .forgot-password-modal .forgot-password-title {
        margin: 5px 0 12px;
        font-size: 20px;
        line-height: 1.15;
        letter-spacing: -.5px;
    }

    .forgot-password-modal .forgot-password-description {
        margin: 0 0 22px;
        color: #535a60;
        font-size: 10px;
        line-height: 1.6;
    }

    .forgot-password-modal .forgot-password-field {
        margin-bottom: 18px;
        text-align: left;
    }

    .forgot-password-modal .forgot-password-label {
        margin: 0 0 6px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .5px;
    }

    .forgot-password-modal .forgot-password-input {
        width: 100%;
        height: 48px;
        margin: 0;
        border: 1px solid #90979b;
        border-radius: 28px;
        padding: 0 16px;
        font-size: 16px;
        background: #fff;
        color: var(--ink);
    }

        .forgot-password-modal .forgot-password-input:focus {
            border-color: var(--red);
            outline: 2px solid #b9002c22;
            outline-offset: 2px;
        }

    .forgot-password-modal .forgot-password-error {
        display: block;
        margin-top: 5px;
        color: #b9002c;
        font-size: 12px;
    }

    .forgot-password-modal .forgot-password-button {
        width: 100%;
        min-height: 48px;
        border: 0;
        border-radius: 28px;
        background: #1c84c6;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: .4px;
        cursor: pointer;
    }

        .forgot-password-modal .forgot-password-button:hover {
            background: #1c84c6;
        }

    .forgot-password-modal .forgot-password-resend {
        margin-top: 15px;
        font-size: 13px;
    }

        .forgot-password-modal .forgot-password-resend a {
            color: var(--red);
            text-decoration: underline;
            margin-left: 3px;
        }

    .forgot-password-modal .forgot-password-timer {
        margin-top: 10px;
        font-size: 12px;
        color: #535a60;
    }

    .forgot-password-modal .forgot-password-message {
        margin-top: 15px;
        font-size: 13px;
        color: #b9002c;
    }

    .forgot-password-modal .forgot-password-hidden {
        display: none;
    }



.password-input-wrapper {
    position: relative;
    width: 100%;
}

    .password-input-wrapper .forgot-password-input {
        width: 100%;
        padding-right: 45px !important;
        box-sizing: border-box;
    }

.passwordIcon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: #555;
    font-size: 16px;
}

    .passwordIcon:hover {
        color: #000;
    }
@media (max-width: 700px) {
    .forgot-password-modal .forgot-password-box {
        width: calc(100% - 32px);
    }

    .forgot-password-modal .forgot-password-body {
        padding: 28px 22px;
    }

    .forgot-password-modal .forgot-password-title {
        font-size: 26px;
    }
}

/*Password expiry model*/
.password-expiry-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    align-items: center;
    justify-content: center;
}

.password-expiry-modal.show {
    display: flex !important;
}

.password-expiry-modal-dialog {
    width: 500px;
    max-width: 95%;
    margin: auto;
}

.password-expiry-modal-content {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.password-expiry-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #ddd;
}

.password-expiry-modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.password-expiry-modal-body {
    padding: 22px;
}

.expiry-form-group {
    margin-bottom: 18px;
}

    .expiry-form-group label {
        display: block;
        margin-bottom: 7px;
        font-weight: 600;
    }

        .expiry-form-group label span {
            color: #dc3545;
        }

.expiry-password-group {
    position: relative;
    width: 100%;
}

.expiry-password-input {
    width: 100%;
    height: 42px;
    padding: 8px 48px 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

    .expiry-password-input:focus {
        outline: none;
        border-color: #007bff;
    }

.expiry-eye-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

    .expiry-eye-btn i {
        font-size: 16px;
        color: #555;
    }

    .expiry-eye-btn:hover i {
        color: #007bff;
    }

.expiry-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.password-expiry-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 22px;
    border-top: 1px solid #ddd;
}

.expiry-clear-btn,
.expiry-change-btn {
    min-width: 100px;
    padding: 9px 18px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.expiry-clear-btn {
    background: #dc3545;
    color: #fff;
}

    .expiry-clear-btn:hover {
        background: #c82333;
    }

.expiry-change-btn {
    background: #007bff;
    color: #fff;
}

    .expiry-change-btn:hover {
        background: #0056b3;
    }


