@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;500;600&family=Spectral:wght@400;600&display=swap');

:root {
    --login-dark: #4a4a4a;
    --login-ink: #1f1f1f;
    --login-muted: #6b6b6b;
    --login-border: #cfcfcf;
    --login-accent: #2f67d1;
    --login-chip: #2c2c2c;
    --login-chip-border: #51c5a8;
}

.has-login-experience {
    background: #ffffff;
    font-family: "Libre Franklin", "Poppins", sans-serif;
    color: var(--login-ink);
}

.login-page {
    padding: 0 0 30px;
}

.login-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 6px;
}

.login-hero__logo {
    height: 38px;
    width: auto;
}

.ve-header + .ve-main .login-hero {
    display: none;
}

.login-carousel {
    margin: 0;
    background: #0e0e0e;
    color: #f5f5f5;
    border-radius: 0;
    box-shadow: none;
    position: absolute;
    top: 0px;
    left: 0;
}

.login-carousel__track {
    display: flex;
    gap: 7px;
    padding: 6px 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
}

.login-carousel__track::-webkit-scrollbar {
    display: none;
}

.login-carousel__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    min-width: 110px;
    max-width: 180px;
    background: transparent;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    flex: 0 0 auto;
}

.login-carousel__item img {
    width: 70px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.login-carousel__item span {
    display: block;
    padding: 3px 6px;
    background: #07292d;
    border: 1px solid #ffffff40;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.login-stage {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 26px 24px 34px;
}

.login-hero__copy {
    text-align: center;
}

.login-hero__title {
    font-family: "Spectral", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: 0.4px;
    margin: 0;
}

.login-hero__subtitle {
    margin: 6px 0 10px;
    font-style: italic;
    color: var(--login-muted);
}

.login-hero__steps {
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.login-stage__columns {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(320px, 380px) minmax(180px, 1fr);
    gap: 36px;
    align-items: center;
    width: 100%;
    justify-items: center;
}

.login-panel {
    position: static;
    transform: none;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
}

.login-panel--left {
    grid-column: 1;
}

.login-panel--right {
    grid-column: 3;
}

.login-panel__media {
    width: 100%;
    height: 160px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
}

.login-panel__title {
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--login-ink);
    width: 90%;
    margin: auto;
    text-align: center;
    margin-bottom: 10px;
}

.login-card {
    width: 100%;
    grid-column: 2;
    justify-self: center;
    background: #ffffff;
    border-radius: 2px;
    padding: 14px 14px 16px;
    border: 2px solid #3f3f3f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    animation: login-fade-in 0.5s ease-out both;
}
/* 
.login-form .form-group {
    margin: 0;
    border: 1px solid var(--login-border);
    position: relative;
}

.login-form .form-group + .form-group {
    border-top: none;
}

.login-form .form-control {
    border: none;
    background: #ffffff;
    width: 100%;
    padding: 22px 42px 10px 12px;
    font-size: 0.95rem;
    box-shadow: none;
}

.login-form .control-label {
    display: none;
} */

.login-input__icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #8a8a8a;
}

/* .login-form .form-group div {
    display: none;
}
 */
.login-submit {
    width: 100%;
    margin-top: 12px;
    padding: 11px 18px;
    background: var(--login-accent);
    color: #fff;
    border-radius: 2px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.login-links-box {
    margin: 12px auto 0;
    border: 2px solid #3f3f3f;
    padding: 8px 12px;
    text-align: center;
    font-size: 0.85rem;
}

.login-links-box p {
    margin: 0;
}

.login-links-box p + p {
    margin-top: 4px;
}

.login-link {
    color: var(--login-accent);
    text-decoration: none;
    font-weight: 600;
}

.login-link:hover,
.login-link:focus {
    text-decoration: underline;
}

.login-ticker {
    max-width: 100%;
    background: #f6f7f9;
    color: #373737;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    bottom: 24px;
    box-shadow: none;
    z-index: 10;
}

.login-ticker__mask {
    overflow: hidden;
}

.login-ticker__track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    transform: translateX(0);
    animation: ticker-scroll var(--ticker-duration, 20s) linear infinite;
    animation-play-state: paused;
}

.login-ticker.is-active .login-ticker__track {
    animation-play-state: running;
}

.login-ticker.is-static .login-ticker__track {
    animation: none;
    transform: translateX(0);
}

.login-ticker__text {
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

@media (max-width: 1024px) {
    .login-stage__columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .login-panel__media {
        height: 140px;
    }

    .login-card {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .login-hero {
        padding: 14px 16px 6px;
    }

    .login-stage {
        padding: 20px 16px 30px;
    }

    .login-carousel__item {
        min-width: 96px;
    }
}

@keyframes login-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--ticker-distance, 300px)));
    }
}



body.login {
    width: 100%;
}

.lgWrapper{
    width: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
    height: 100px;
    position: absolute;
}

body.login{
    background-color: #f6f7f9 !important;
}
.ceFormSide {
    background-color: #ffffff;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.loginUi{

}
.loginContainerFull{
    display: flex;
    height: calc(100vh - 144px);
    margin-top: 103px;
    align-items: center;
    padding-bottom: 50px;
}
.loginContainerFull .left-container,
.loginContainerFull .right-container{
    width: calc(50% - 225px);
}

.uiFormx {
}
.loginUi .fgt {
    justify-content: center;
}
.loginUi .forget-password {
    margin-top: 10px;
    justify-content: center;
}
.loginContainerFull .caLoginContainer {
    width: 100%;
    max-width: 640px;
    background-color: transparent;
    box-shadow: none;
}
.loginContainerFull .caLoginContainer h4{
    text-align: center;
    display: block;
    color: #000;

    font-size: 50px;
    font-weight: 400;
    letter-spacing: -1.5px;
    margin-bottom: 10px;
}
.loginContainerFull .caLoginContainer h4 b{
    font-weight: 800;
}
.loginContainerFull .caLoginContainer h4 sup{
    font-size: 45%;
    top: -1.5em !important;
    font-weight: 600;
    letter-spacing: -2px;
}

.loginContainerFull .caLoginContainer small{
        font-style: italic;
    font-size: clamp(14px, 0.95vw, 18px);
    margin-bottom: 12px;
    color: #343a40;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}
.loginContainerFull .caLoginContainer small::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    width: 86%;
    height: 1px;
    background-color: #000;
}
.loginContainerFull .caLoginContainer hr{
    border-top: 1px solid #b7b7b7;
        margin: 5px 0;
        display: none;
}
.loginContainerFull .caLoginContainer ul,
.breadCrumbsFooter{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    list-style: none;
    padding: 0;
    margin: 0;
}
.loginContainerFull .caLoginContainer ul li,
.breadCrumbsFooter li{
font-size: 22px;
    color: #202226;
    letter-spacing: -0.7px;
    font-weight: 400;
}
.loginContainerFull .caLoginContainer ul li:before,
.breadCrumbsFooter li:before{
    content: ">";
    display: inline-block;
    padding: 0 5px;
}
.loginContainerFull .caLoginContainer ul li:first-child:before,
.breadCrumbsFooter li:first-child:before{
    display: none;
}
.loginContainerFull .caLoginContainer .systemName {
    padding: 0;
    text-align: center;
}
body.login{
    width: 100%;
}
.left-container,
.right-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.breadCrumbsFooter {
    position: fixed;
    width: 100%;
    padding: 15px 15px !important;
    bottom: 76px;
    left: 0;
    background-color: #e3e9ed;
    border-top: 1px solid #d2dbe2;
    border-bottom: 1px solid #d2dbe2;
}
.breadCrumbsFooter li {
    font-size: 13px !important;
    opacity: .6;
    font-weight: 600 !important;
    letter-spacing: -1px;
    color: #383c3f !important;
}

@media (max-width: 1024px) {
    .breadCrumbsFooter li {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .left-container,
.right-container{
    display: none;
}
.breadCrumbsFooter{
    display: none !important;
}
.loginContainerFull .caLoginContainer small {
    font-size: 12px;
}
.channel-gateway__title,
.channel-gateway__subtitle,
.channel-gateway__benefits{
        font-size: 17px;
    }
    .channel-gateway .caLoginContainer .channel-gateway__cta.btn{
        font-size: 18px;
    }
    .loginContainerFull .caLoginContainer h4 {
    font-size: 36px;
}
    .channel-gateway .caLoginContainer ul li {
        font-size: 18px !important;
    }
}
