header {
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: "Roboto", sans-serif;
    width: 100%;
    margin-bottom: 5.7rem;
}

.header-wrapper > .header.block {
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    border-bottom: 1px solid #efefef;
}

header .header-wrapper {
    max-width: unset;
    padding: 0;
    margin: 0;
    background-color: #fff;
}

#nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 16px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 28px 1.3rem 0;
    height: 43px;
    max-width: 100%;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.nav-topbar {
    padding: 7.5px 14px;
    font-size: 11px;
    display: flex;
    justify-content: flex-end;
}

.nav-topbar ul,
.nav-sections ul,
.nav-tools ul {
    list-style: none;
    margin: 0;
}

.nav-topbar ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-topbar ul li {
    position: relative;
    display: flex;
    align-items: center;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    /* letter-spacing: 0.3px; */
}

.nav-topbar ul li:not(:last-child)::after {
    /* content: ''; */
    display: inline-block;
    width: 1px;
    height: 14.8px;
    background-color: var(--dark-black);
    margin-left: 10px;
    margin-top: 2px;
}

.nav-topbar a {
    color: #bcbcbc;
    text-decoration: none;
    font-size: 12px;
}

.nav-topbar .language-selector {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-topbar .language-selector::before {
    display: none;
}

.nav-topbar .language-selected {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    padding: 2px 0;
    user-select: none;
}

.nav-topbar .language-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 7px;
    margin-top: -1px;
}

.nav-topbar .language-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-black);
    text-transform: uppercase;
}

.nav-topbar .language-arrow {
    display: inline-block;
    width: 9px;
    height: 6px;
    background-image: url("/icons/down-arrow-dish.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.nav-topbar .language-selector.open .language-arrow {
    /* transform: rotate(180deg); */
}

.nav-topbar .language-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    min-width: 130px;
    padding: 6px 0;
    margin-top: 6px;
    z-index: 1001;
    list-style: none;
}

.nav-topbar .language-selector.open .language-menu {
    display: block;
}

.nav-topbar .language-menu li {
    padding: 8px 16px !important;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    text-transform: capitalize;
    white-space: nowrap;
    justify-content: center;
}

.nav-topbar .language-menu li::after {
    display: none;
}

.nav-topbar .language-menu li:hover {
    background-color: #f5f5f5;
}

.nav-topbar .language-menu li.active {
    color: #f24b26;
    font-weight: 600;
}

.nav-brand {
    flex-shrink: 0;
    margin-right: 40px;
    order: 0;
}

.nav-brand img {
    width: 96px;
    height: auto;
    display: block;
    padding-bottom: 25px;
}

.nav-sections {
    flex: 1;
}

@media (min-width: 900px) {
    .nav-sections {
        display: flex;
        justify-content: flex-start;
        margin-left: 36px;
    }
}

.nav-sections .default-content-wrapper > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.nav-sections ul li {
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: normal;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .28px;
    list-style: none;
    padding: 0;
    position: relative;
}
.nav-sections ul li p
 {
    padding: 1.5rem 1rem;
}
.nav-sections ul li a,
.nav-sections ul li span {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
}

.nav-caret {
    background-image: url("/icons/down-arrow-dish.png");
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 6px;
    padding-top: 0;
    position: absolute;
    right: -10px;
    top: 45%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition:
        transform 0.3s ease,
        -webkit-transform 0.3s ease;
    width: 9px;
    right: 0;
    top: 45%;
}

.nav-drop:hover .nav-caret {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-sections .nav-drop:hover > ul {
    display: block;
}

.nav-sections .nav-drop ul {
    left: 0;
    background: #fff;
    border-radius: 4px;
    margin: 0;
    background-color: #f9f9f9;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .1);
    color: #000;
    display: none;
    list-style: none;
    padding: .3rem 0;
    position: absolute;
    top: 100%;
    width: 12rem;
    z-index: 999;
}

.nav-sections .nav-drop ul li {
    padding: 8px 16px;
    font-size: 13px;
    text-transform: none;
    font-weight: 400;
    line-height: normal;
    display: block;
    height: auto;
}
.nav-sections .nav-drop ul li:hover{
  background: #fff;
}
/* Grouped/categorised dropdown (3-level: nav item > category > links) */
.nav-sections .nav-drop-grouped > ul > li.nav-category-label {
    padding: 10px 20px 2px;
    font-size: 10px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.5px;
    cursor: default;
    pointer-events: none;
}
.nav-sections .nav-drop-grouped > ul > li.nav-category-label p{
  padding: 0;
}
.nav-sections
    .nav-drop-grouped
    > ul
    > li.nav-category-label
    + li.nav-category-label {
    margin-top: 4px;
    border-top: 1px solid #f0f0f0;
}

/* Inner ul (actual links) inside a category label — render inline, not as nested dropdown */
.nav-sections .nav-drop-grouped > ul > li.nav-category-label > ul {
    display: block !important;
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 6px;
    min-width: unset;
    border-radius: 0;
    margin: 0;
}

.nav-sections .nav-drop-grouped > ul > li.nav-category-label > ul > li {
    padding: 6px 0;
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    pointer-events: auto;
    cursor: pointer;
    width: 160px;
}

.nav-sections .nav-drop-grouped > ul > li.nav-category-label > ul > li a {
    color: #1a1a1a;
    text-decoration: none;
    display: block;
}

.nav-sections .nav-drop-grouped > ul > li.nav-category-label > ul > li:hover {
    background: #f5f5f5;
}

.nav-tools {
    margin-left: auto;
}

.nav-tools .default-content-wrapper > ul {
    display: flex;
    align-items: center;
    gap: 33px;
    padding-right: 30px;
}

.nav-tools li.recharge-cta a {
    color: #f24b26;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-tools li.user-profile a {
    text-indent: -9999px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/icons/profileicon.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.nav-tools li.user-profile.logged-in a {
    text-indent: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-image: none;
    background-color: rgba(240, 76, 35, .2);
    color: #f04c23;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

.logged-in-popup {
    display: none;
    position: fixed;
    top: 64px;
    right: 16px;
    width: 260px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 1px 0 10px rgba(0, 0, 0, .2);
    z-index: 1001;
    --arrow-offset: 6px;
}

.logged-in-popup.open {
    display: block;
}

.logged-in-popup::before {
    content: "";
    position: absolute;
    height: 1rem;
    width: 1rem;
    right: var(--arrow-offset, 6px);
    top: -5px;
    background: #fff;
    transform: rotate(45deg);
}

.logged-in-popup-details {
    padding: 16px 30px;
    border-bottom: 1px solid #f5f5f5;
}

.logged-in-popup-name {
    margin: 0 0 9px;
    color: #2a2b2d;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-style: normal;
}

.logged-in-popup-vc {
    margin: 0;
    color: #999;
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.logged-in-popup-item {
    display: block;
    padding: 16px 30px;
    color: #ff5a12;
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
}

.logged-in-popup-item:last-child {
    border-bottom: none;
}

@media (max-width: 899px) {
    .logged-in-popup {
        top: 100px;
    }
}

.nav-hamburger {
    display: block;
}

@media (min-width: 900px) {
    .nav-hamburger {
        display: none;
    }
}

@media (max-width: 899px) {
    .nav-wrapper {
        flex-wrap: wrap;
        padding: 0;
        height: auto;
        min-height: 40px;
        align-items: center;
        position: sticky;
        top: 0;
        background-color: #fff;
        z-index: 1000;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        padding-top: 5px;
    }

    .nav-sections .default-content-wrapper > ul {
        flex-direction: column;
        /* padding: 0px 20px; */
    }

    header {
        margin-bottom: 3.8rem;
    }

    .nav-tools,
    .nav-sections {
        display: none;
        width: 100%;
    }

    nav[aria-expanded="true"] .nav-sections {
        display: block !important;
        background: #fff;
        position: fixed;
        top: 55px;
        left: 0;
        height: calc(100vh - 60px);
        overflow-y: auto;
        /* padding: 20px; */
        z-index: 999;
    }

    .nav-mobile-tools {
        display: flex;
        /* margin-left: auto; */
        margin-right: 10px;
        align-items: center;
        order: 1;
    }

    .nav-mobile-tools ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 12px;
    }

    .nav-mobile-tools li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #444;
        font-size: 9px;
        font-weight: 400;
        text-align: center;
    }
    .nav-mobile-tools li a .tool-label {
        color: #000;
        line-height: 100%;
    }
    .nav-mobile-tools .icon img {
        object-fit: contain;
        height: 14px;
        width: 16px;
    }
    .nav-mobile-tools .icon.profile-avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 18px;
        width: 18px;
        border-radius: 50%;
        background-color: rgba(240, 76, 35, .2);
        color: #f04c23;
        font-weight: 500;
        font-size: 11px;
        text-transform: uppercase;
        line-height: 1;
    }

    .nav-hamburger {
        order: 3;
        display: flex;
        flex-direction: column;
        font-size: 9px;
        align-items: center;
        gap: 3px;
        width: 26px;
    }
    .nav-hamburger span {
        display: block;
        line-height: 100%;
    }
    .nav-hamburger.open {
        position: relative;
        z-index: 999;
        /* top: -39px; */
    }

    .nav-brand img {
        width: 76px;
        height: auto;
        display: block;
        padding-bottom: 5px;
    }

    .nav-hamburger button {
        background: none;
        border: none;
    }

    .nav-hamburger-icon {
        width: 1.2rem;
        height: 14px;
        display: block;
    }
    #nav {
        padding: 25px 16px;
    }
    nav[aria-expanded="true"] .nav-hamburger.open > span {
        display: none;
    }
    nav[aria-expanded="true"] .nav-hamburger-icon {
        /* display: none; */
        transform: scale(1.4);
    }

    .nav-sections ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-sections > .default-content-wrapper > ul > li {
        border-bottom:1px solid #c4c4c4;
        padding: 0;
        height: auto !important;
        line-height: inherit !important;
        margin: 0 1.4rem;
    }

    .nav-sections .nav-drop > ul > li {
        padding: 0.5rem 1.5rem;
    }
  
    .nav-sections .nav-drop {
        position: relative;
        flex: 1;
        display: block;
    }

    .nav-sections .nav-drop p {
        flex: 1;
        white-space: nowrap;
                padding: 17px 0;
    }

    .nav-sections .nav-drop > a,
    .nav-sections .nav-drop > span {
        /* display: flex; */
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        font-size: 16px;
        font-weight: 700;
        color: #333;
        text-transform: uppercase;
        display: none;
    }

    .nav-sections .nav-drop.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    }

    .nav-sections .nav-drop .nav-caret {
        display: none !important;
    }

    .nav-sections .nav-drop::after {
        content: "";
        position: absolute;
        right: 0px;
        top: 27px;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background-image: url("/icons/plus-icon-orange.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .nav-sections .nav-drop[aria-expanded="true"]::after {
        background-image: url("/icons/minus-sign.png");
        top: 26px;
    }

    .nav-sections .nav-drop > ul {
        max-height: 0;
        overflow: hidden;
        background: #f9f9f9;
        padding: 0;
        /* transition: max-height 0.3s ease-out; */
        position: relative;
        top: 0;
        box-shadow: none;
        width: 100%;
        display: block !important;
        margin: 0 -1.4rem;
    }

    .nav-sections .nav-drop[aria-expanded="true"] > ul {
        max-height: 1000px;
        /* padding: 10px 20px; */
    }

    .nav-sections .nav-drop-grouped[aria-expanded="true"] > ul {
        padding-left: 20px;
    }

    /* Grouped dropdown on mobile — category labels & their inner lists */
    .nav-sections
        .nav-drop-grouped[aria-expanded="true"]
        > ul
        > li.nav-category-label {
        padding: 8px 0 2px;
        font-size: 11px;
        font-weight: 700;
        color: #999;
        pointer-events: none;
        cursor: default;
        border-bottom: none;
    }

    .nav-sections .nav-drop-grouped > ul > li.nav-category-label > ul {
        max-height: unset !important;
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0 !important;
        display: block !important;
    }

    .nav-sections .nav-drop-grouped > ul > li.nav-category-label > ul > li {
        padding: 8px 10px;
        font-size: 14px;
        font-weight: 400;
        color: #333;
        border-bottom: none;
    }

    .nav-sections .nav-drop-grouped > ul > li.nav-category-label > ul > li a {
        color: #333;
        text-decoration: none;
        display: block;
    }

    .nav-mobile-home-cta {
        margin-top: 30px;
        padding: 10px 20px;
        display: block !important;
    }

    .nav-mobile-home-cta a {
        width: 100%;
        background-color: #f24b26;
        color: #fff;
        padding: 15px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        text-transform: uppercase;
        text-align: center;
        display: block;
        text-decoration: none;
    }

    .nav-topbar {
        display: none;
    }

    nav[aria-expanded="true"] .nav-topbar:not(.mobile-bottom-bar) {
        display: block !important;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .nav-sections .nav-topbar.mobile-bottom-bar {
        display: block !important;
        padding: 0 1.4rem;
        /* margin-top: 10px; */
        border-top: none;
    }

    .nav-topbar .language-menu{
        right: auto;
        left: 0;
    }

    .nav-sections .nav-topbar.mobile-bottom-bar ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-sections .nav-topbar.mobile-bottom-bar ul li p {
        padding: 0;
    }
    .nav-sections .nav-topbar.mobile-bottom-bar ul li p a {
        font-size: 14px;
    }
    .nav-sections .nav-topbar.mobile-bottom-bar ul li {
        width: 100%;
        padding: 1.2rem 0;
        border-bottom: 1px solid #c4c4c4;
        font-size: 16px;
        font-weight: 700;
        color: #333;
        text-transform: uppercase;
        justify-content: flex-start;
    }

    .nav-sections .nav-topbar.mobile-bottom-bar ul li:last-child {
        border-bottom: none;
    }

    .nav-sections .nav-topbar.mobile-bottom-bar .language-selected {
        padding: 0;
    }

    .nav-sections .nav-topbar.mobile-bottom-bar .language-label {
        color: #f24b26;
        font-weight: 700;
        font-size: 16px;
    }

    .nav-sections .nav-topbar.mobile-bottom-bar .language-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }

    .nav-sections .nav-topbar.mobile-bottom-bar .language-arrow {
        margin-left: 10px;
        width: 12px;
        height: 8px;
    }
}

@media (min-width: 900px) {
    .nav-mobile-tools,
    .nav-mobile-home-cta {
        display: none;
    }
}

/* Login Form Styles */
body.login-popup-open,
html:has(body.login-popup-open) {
    overflow: hidden;
}

.dishtv-custom-alert {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgb(0 0 0 / 40%);
    align-items: center;
    justify-content: center;
}

.dishtv-custom-alert-box {
    background: #fff;
    border-radius: 5px;
    padding: 40px 32px 32px;
    text-align: center;
    min-width: 280px;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 8px 32px rgb(0 0 0 / 18%);
}

.dishtv-custom-alert-icon svg {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}

.dishtv-custom-alert-msg {
    font-size: 18px;
    color: #333;
    margin: 0 0 28px;
    line-height: 1.5;
}

.dishtv-custom-alert-ok {
    background: #f5623c;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 140px !important;
}

.dishtv-custom-alert-ok:hover {
    background: #e04e2a;
}

.dishtvform {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

body.login-popup-open .dishtvform {
    opacity: 1;
    visibility: visible;
}

.dishtvform .parentcontainer {
    background: #fff;
    max-width:35%;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: slideInFromRight 0.3s ease;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding: 40px 50px;
}

.dishtv-form-upper-container {
    /* padding: 30px 25px; */
    background: #fff;
}

.parentcontainer > .dishtv-form-upper-container {
    display: none;
}

.parentcontainer > #login-with-password-flow {
    display: block !important;
}

.parentcontainer > #login-with-password-flow[style*="display: none"] {
    display: none !important;
}

.parentcontainer > #forgot-password-flow-container {
    display: none;
}

.parentcontainer > #forgot-password-flow-container[style*="display: block"] {
    display: block !important;
}

.parentcontainer > .set-new-password-container {
    display: none;
}

.parentcontainer > .set-new-password-container[style*="display: block"] {
    display: block !important;
}

.parentcontainer > .password-update-container {
    display: none;
}

.parentcontainer > .password-update-container[style*="display: block"] {
    display: block !important;
}

.dishtv-form-upper-container > span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px !important;
}

.dishtv-form-upper-container h2 {
    margin: 0;
    font-size: 27px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 32px;
}
.dishtv-form-upper-container .before-otp {
    margin-top: 35px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.close-login-container {
    width: 28px;
    height: 28px;
    cursor: pointer;
    background-size: contain;
    flex-shrink: 0;
}

.login-dish-text {
    margin-bottom: 20px;
    text-align: center;
}

.login-dish-sub-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.before-otp input,
.forgot-password-flow input,
.set-new-password input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid #c4c4c4;
    border-radius: 0;
    font-size: 14px;
    /* margin-bottom: 20px; */
    box-sizing: border-box;
    font-family: inherit;
    background-color: transparent;
}

.before-otp input::placeholder,
.forgot-password-flow input::placeholder,
.set-new-password input::placeholder {
    color: #bdbdbd;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.before-otp input:focus,
.forgot-password-flow input:focus,
.set-new-password input:focus {
    outline: none;
    /* border-bottom-color: #f24b26; */
    box-shadow: none;
}

.input-with-password-conntainer {
    position: relative;
    /* margin-bottom: 20px; */
}

.input-with-password-conntainer input {
    width: 100%;
    padding: 14px 30px 14px 0;
    border: none;
    border-bottom: 1px solid #c4c4c4;
    border-radius: 0;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
    background-color: transparent;
    color: #000;
}

.input-with-password-conntainer input::placeholder {
    color: #ccc;
}

.input-with-password-conntainer input:focus {
    outline: none;
    border-bottom-color: #f24b26;
    box-shadow: none;
}

.input-with-password-conntainer img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 10px;
    cursor: pointer;
}

.set-new-password-container .input-with-password-conntainer img {
    display: none;
}

.forgot-password-btn {
            color: #828282;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        margin-top: -10px;
        text-align: end;
}

.return-to-login {
    text-align: center;
    color: #f24b26;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin: 0px 0px 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forgot-password-btn:hover,
.return-to-login:hover {
    text-decoration: underline;
}

.login-btn-container-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* margin-top: 30px; */
}

.login-dishtv-password,
.get-otp-btn,
.submit-btn,
.resend-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.login-dishtv-password svg,
.get-otp-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.login-dishtv-password {
    background-color: #f04c23;
    color: #fff;
    width: 100%;
}

.login-dishtv-password:hover:not(:disabled) {
    background-color: #f04c23;
}

.get-otp-btn {
    background-color: #4f4f4f;
    color: #fff;
}

.get-otp-btn:hover:not(:disabled) {
    background-color: #1a1a1a;
}

.submit-btn {
    background-color: #f24b26;
    color: #fff;
    width: 100%;
    margin-top: 10px;
}

.resend-btn {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #f04c23;
  text-decoration: underline;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.submit-btn:disabled,
.login-dishtv-password:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.resend-btn:disabled {
    color: #aaa;
    cursor: not-allowed;
}

.submit-btn:hover:not(:disabled) {
    background-color: #e63b1c;
}

.otp-inputs-row {
    display: flex;
    gap: 10px;
    justify-content: start;
    margin: 20px 0 16px;
}

.otp-input {
    width: 42px;
    height: 42px;
    padding: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    font-family: monospace;
    background-color: transparent;
    flex-shrink: 0;
}

.otp-input:focus {
    outline: none;
    border-bottom-color: #f24b26;
    box-shadow: none;
}

.otp-timer-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.otp-timer-row #timer:empty {
    display: none;
}
.otp-timer-row #timer {
    font-size: 13px;
    min-width: 36px;
    padding-right: 5px;
    display: block;
    color: #4f4f4f;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
}

.after-otp {
    margin-top: 20px;
}

.after-otp .forms {
    display: flex;
    flex-direction: column;
}

.edit-vc-container {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0 4px;
    margin-bottom: 4px;
}

.edit-vc-container p {
    margin: 0;
    font-size: 14px;
    color: #828282;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.edit-vc-container span {
    font-weight: 700;
    color: #1a1a1a;
}

.edit-vc-icon {
    width: 15px;
    height: 15px;
    cursor: pointer;
    color: #888;
    flex-shrink: 0;
    vertical-align: middle;
}

.edit-vc-icon:hover {
    color: #f24b26;
}

.pre-verify-num {
    font-size: 13px;
    font-weight: 400;
    color: #828282;
    margin: 0 0 4px;
    line-height: 1.5;
}

.pre-verify-num span {
    color: #828282;
}

.or-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 10px 0 20px;
    color: #828282;
    font-size: 14px;
    position: relative;
    padding: 0 20px;
    font-weight: 400;
}

.or-text::before,
.or-text::after {
    content: "--------------------------------";
    display: inline;
    position: absolute;
    color: #828282;
    opacity: .5;
    position: absolute;
    top: 9%;
    width: 40%;
}
.or-text::before{
left: 0;
    text-align: left;
}
.or-text::after {
    right: 0;
    text-align: right;
}

.or-text.hide-after-otp {
    display: block;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.social-login.hide-after-otp {
    display: flex;
}
.social-login.hide-after-otp button {
  text-transform: unset;
}
.social-login.hide-after-otp button p{
  font-size: 14px;
  font-weight: 600;
  color: rgb(130, 130, 130);
}
.google-login,
.facebook-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 20px;
    margin-bottom: 20px;
    border: 0;
    border-radius: 35px;
    background-color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 50px;
    flex: 1;
    stroke-width: 1px;
    stroke: #e3e3e3;
    filter: drop-shadow(0 2px 12px rgba(56, 56, 56, 0.15));
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.facebook-login:hover {
    background-color: #f9f9f9;
    border-color: #999;
}

.google-login img,
.facebook-login img {
    width: 32px;
    height: 32px;
}

.google-login p,
.facebook-login p {
        margin: 0;
    color: #828282;
    font-weight: 600;
}

.password-rules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
}

.password-rule {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #f5623c;
    font-weight: 400;
}

.password-rule svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.password-criteria {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px 15px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.rule {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rule:last-child {
    margin-bottom: 0;
}

.rule .icon {
    display: inline-block;
    width: 16px;
    text-align: center;
}

.rule.valid {
    color: #4caf50;
}

.rule.valid .icon {
    color: #4caf50;
}

.input-detail-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 32px;
}

.password-update-success {
    text-align: center;
    padding: 20px 0;
    align-items: center;
}

.password-update-success img {
    width: 104px;
    height: 104px;
}

.password-update-success p {
    font-size: 14px;
    color: #666;
}

.forgot-password-flow-container,
.set-new-password-container,
.password-update-container {
    display: none;
}

.forgot-password-flow-container.active,
.set-new-password-container.active,
.password-update-container.active {
    display: block;
}

.img {
    text-align: center;
}

.img a {
    text-decoration: none;
}

.img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .dishtvform .parentcontainer {
       width: 100% !important;
        border: 0;
        top: 0;
        padding: 30px;
        max-width: 100%;
    }
    .nav-brand {
        margin-right: 0;
        flex: 0.8;
    }


    .login-btn-container-main {
        grid-template-columns: 1fr;
    }
.or-text::before,
.or-text::after{
  width: 48%;
  top: 3%;
}
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
