/* ================================================================
   TuneProtect B2B — Login Page  |  Loginvisa.css
   Brand Color: #33377d  |  Zero Shadows  |  Clean Corporate
   Left: Service Image Slider  |  Right: Login Form
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --brand: #33377d;
    --brand-dark: #272b63;
    --brand-deeper: #1e2150;
    --brand-light: #eef0fb;
    --brand-mid: #5558a0;
}

/* ── Global reset — kill ALL shadows (Bootstrap override) ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Bootstrap focus / active shadow kill */
*:focus,
*:focus-visible,
*:focus-within,
*:active {
    box-shadow: none !important;
    outline: none !important;
}

/* Bootstrap specific overrides */
.btn,
.btn:focus,
.btn:active,
.btn:hover,
.btn-check:checked+.btn,
.form-control,
.form-control:focus,
.form-select:focus,
.carousel-control-prev,
.carousel-control-next,
.carousel-control-prev:focus,
.carousel-control-next:focus,
.carousel-indicators [data-bs-target],
.carousel-item,
.carousel {
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
}

/* Light transparent shadow filter to ensure white text readability */
.carousel-item img {
    filter: brightness(0.65) !important;
}

#loginSlider .carousel-item.active img {
    filter: brightness(0.65) !important;
    transform: scale(1.0) !important;
}

/* Kill any Bootstrap generated pseudo-element shadows */
.carousel::before,
.carousel::after,
.carousel-inner::before,
.carousel-inner::after {
    box-shadow: none !important;
    display: none !important;
}

html,
body {
    height: 100%;
}

.lp-body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #eef0fb;
}

/* ── Wrapper ── */
.lp-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* ================================================================
   LEFT PANEL — 60%
   ================================================================ */
.lp-left {
    position: relative;
    flex: 0 0 60%;
    width: 60%;
    height: 100vh;
    overflow: hidden;
    background: #1e3a5f;
}

/* ── Carousel ── */
#loginSlider,
#loginSlider .carousel-inner,
#loginSlider .carousel-item {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ── Slide image ── */
.lp-slide-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.65) !important;
    transform: scale(1.04);
    transition: transform 8s ease;
}

#loginSlider .carousel-item.active .lp-slide-img {
    transform: scale(1.0);
}

/* Disable Bootstrap default carousel transitions that add shadow */
.carousel-item {
    transition: transform 0.7s ease !important;
}

/* ── Slide current service label (bottom-left of image) ── */
.lp-slide-label {
    position: absolute;
    bottom: 200px;
    left: 24px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.40);
    border: none;
    border-radius: 8px;
    padding: 10px 16px 10px 12px;
    animation: labelIn 0.5s ease;
}

@keyframes labelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-slide-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
}

.lp-slide-name {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.lp-slide-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

/* ── Progress Bar ── */
.lp-prog {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 50;
}

.lp-prog-fill {
    height: 100%;
    width: 0%;
    background: var(--brand);
    border-radius: 0 2px 2px 0;
}

/* ── Overlays (Removed to prevent shadows) ── */
.lp-ov-top,
.lp-ov-bottom,
.lp-ov-right {
    display: none;
}

/* ── Prev / Next Controls ── */
.lp-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.lp-left:hover .lp-ctrl {
    opacity: 1;
}

.lp-ctrl:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lp-ctrl-prev {
    left: 14px;
}

.lp-ctrl-next {
    right: 100px;
}

/* ── Dot Indicators ── */
.lp-dots {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.lp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.30);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.22s ease;
}

.lp-dot.active {
    background: #ffffff;
    width: 8px;
    height: 8px;
}

/* ── Bottom Strip ── */
.lp-bottom-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 60px 30px 30px 30px;
    background: linear-gradient(to top, rgba(14, 20, 36, 0.95) 0%, rgba(14, 20, 36, 0.7) 40%, transparent 100%);
}

.lp-strip-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
}

.lp-strip-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

.lp-strip-title em {
    font-style: normal;
    background: linear-gradient(135deg, #38bdf8 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ── Service Pills ── */
.lp-service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-spill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 6px 16px 6px 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.lp-spill:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
    color: #ffffff;
}

.lp-spill-ico {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2) !important;
}

.lp-ico-visa {
    background: #1d4ed8;
}

.lp-ico-flight {
    background: #0369a1;
}

.lp-ico-insure {
    background: #059669;
}

.lp-ico-holiday {
    background: #d97706;
}

.lp-ico-hotel {
    background: #be185d;
}

.lp-ico-aprm {
    background: #7c3aed;
}

/* ================================================================
   RIGHT PANEL — 40% (Wavy Effect)
   ================================================================ */
.lp-right {
    flex: 0 0 40%;
    width: 40%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-left: none;
    overflow: visible;
    /* Prevents wave from clipping */
    z-index: 100;
    /* Ensures wave overlays progress bar at top */
}

.lp-form-scroll-area {
    width: 100%;
    height: 100%;
    padding: 36px 36px;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Wavy Divider ── */
.lp-wave-divider {
    position: absolute;
    left: -100px;
    top: -2px;
    /* Fixed top border line gap */
    bottom: -2px;
    /* Fixed bottom gap */
    width: 101px;
    height: calc(100% + 4px);
    /* Scales perfectly */
    z-index: 10;
    pointer-events: none;
}

.lp-wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lp-form-box {
    width: 100%;
    max-width: 390px;
}

/* ── Logo ── */
.lp-logo-wrap {
    text-align: center;
    /* margin-bottom: 8px;*/
    padding: 16px 0 4px;
}

.lp-logo {
    width: 150px;
    height: auto;
    display: inline-block;
}

.lp-logo-bar {
    width: 40px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
    margin: 12px auto 12px;
}

/* ── Heading ── */
.lp-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand);
    text-align: center;
    margin-bottom: 4px;
}

.lp-form-sub {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 26px;
}

/* ── Fields ── */
.lp-form {
    width: 100%;
}

.lp-fg {
    margin-bottom: 16px;
}

.lp-lbl {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    /*text-transform: uppercase;*/
}

.lp-irow {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.lp-irow:focus-within {
    background: #fff;
    border-color: var(--brand);
}

.lp-ico {
    padding: 0 10px 0 14px;
    color: #b0bec5;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.18s;
}

.lp-irow:focus-within .lp-ico {
    color: var(--brand);
}

.lp-inp {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 10px 13px 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #1a202c;
    background: transparent;
    width: 100%;
}

.lp-inp::placeholder {
    color: #c8d0dd;
    font-size: 13px;
}

.lp-eye {
    padding: 0 14px;
    color: #b0bec5;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.18s;
}

.lp-eye:hover {
    color: var(--brand);
}

.lp-err {
    display: block;
    font-size: 11.5px;
    color: #ef4444;
    margin-top: 4px;
}

/* ── Error box ── */
.lp-err-box {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 3px solid #ef4444;
    border-radius: 6px;
    padding: 10px 13px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #b91c1c;
}

/* ── Login Button ── */
.lp-btn-login {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    background: var(--brand);
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.18s ease;
    letter-spacing: 0.4px;
}

.lp-btn-login:hover {
    background: var(--brand-dark);
}

.lp-btn-login:active {
    background: var(--brand-deeper);
}

.lp-btn-arrow {
    font-size: 13px;
    transition: transform 0.18s ease;
}

.lp-btn-login:hover .lp-btn-arrow {
    transform: translateX(5px);
}

/* ── Sign Up + Forgot ── */
.lp-row2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    gap: 10px;
}

.lp-btn-signup {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    background: #f9fafb;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 18px;
    text-decoration: none;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.lp-btn-signup:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-light);
}

.lp-forgot {
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color 0.18s;
}

.lp-forgot:hover {
    color: var(--brand);
    text-decoration: underline;
}

/* ── Service Chips ── */
.lp-chip-wrap {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.lp-chip-hd {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
}

.lp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    cursor: default;
}

.lp-chip i {
    font-size: 9px;
}

.lp-chip.c-visa {
    background: var(--brand-light);
    color: var(--brand);
}

.lp-chip.c-flt {
    background: #e0f2fe;
    color: #0369a1;
}

.lp-chip.c-ins {
    background: #d1fae5;
    color: #065f46;
}

.lp-chip.c-hol {
    background: #fef3c7;
    color: #92400e;
}

.lp-chip.c-htl {
    background: #fce7f3;
    color: #831843;
}

.lp-chip.c-apr {
    background: var(--brand-light);
    color: var(--brand);
}

.lp-copy {
    text-align: center;
    font-size: 11px;
    color: #cbd5e1;
    margin-top: 14px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
    .lp-body {
        height: auto;
        overflow: auto;
    }

    .lp-wrapper {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .lp-left {
        flex: none;
        width: 100%;
        height: 45vw;
        min-height: 220px;
        max-height: 380px;
    }

    #loginSlider,
    #loginSlider .carousel-inner,
    #loginSlider .carousel-item,
    .lp-slide-img {
        height: 45vw;
        min-height: 220px;
        max-height: 380px;
    }

    .lp-ov-right {
        display: none;
    }

    .lp-ctrl-next {
        right: 14px;
    }

    .lp-strip-title {
        font-size: 15px;
    }

    .lp-slide-label {
        bottom: 155px;
    }

    .lp-right {
        flex: none;
        width: 100%;
    }

    .lp-form-scroll-area {
        padding: 36px 20px;
    }
}

@media (max-width: 576px) {
    .lp-left {
        height: 55vw;
        min-height: 200px;
        max-height: 280px;
    }

    #loginSlider,
    #loginSlider .carousel-inner,
    #loginSlider .carousel-item,
    .lp-slide-img {
        height: 55vw;
        min-height: 200px;
        max-height: 280px;
    }

    .lp-bottom-strip {
        padding: 0 12px 12px;
    }

    .lp-strip-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .lp-spill {
        font-size: 11px;
    }

    .lp-slide-label {
        display: none;
    }

    .lp-form-title {
        font-size: 20px;
    }

    .lp-row2 {
        flex-direction: column;
    }

    .lp-btn-signup {
        width: 100%;
        justify-content: center;
    }

    .lp-forgot {
        text-align: center;
        display: block;
        margin-top: 6px;
    }

    .lp-right {
        padding: 0;
    }

    .lp-form-scroll-area {
        padding: 30px 20px;
    }
}