/* ============================================
   Global Scrollbar
   ============================================ */

/* Always reserve scrollbar space on html to prevent layout shift */
html {
    overflow-y: scroll;
}


/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #c4c6ff #f0f1fb;
}

/* WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f0f1fb;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #c4c6ff;
    border-radius: 10px;
    transition: background 0.2s;
}
::-webkit-scrollbar-thumb:hover {
    background: #696cff;
}
::-webkit-scrollbar-corner {
    background: #f0f1fb;
}


/* ============================================
   KStarter Sidebar Logo
   ============================================ */

.ks-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #696cff 0%, #4f46e5 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(105, 108, 255, 0.45);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.ks-logo-text {
    line-height: 1;
}

.ks-logo-bold {
    font-size: 1.15rem;
    font-weight: 800;
    color: #696cff;
    letter-spacing: -0.5px;
}

.ks-logo-light {
    font-size: 0.8rem;
    font-weight: 500;
    color: #a5a6ad;
    letter-spacing: 0.2px;
}

/* ============================================
   Navbar Tagline
   ============================================ */

.ks-navbar-tagline {
    gap: 0.6rem;
}

.ks-navbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #696cff 0%, #4f46e5 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(105, 108, 255, 0.35);
}

.ks-navbar-badge i {
    font-size: 0.8rem;
}

.ks-navbar-text {
    font-size: 0.8rem;
    color: #a1acb8;
    line-height: 1.4;
}

.ks-navbar-highlight {
    color: #696cff;
    font-weight: 600;
}


/* ============================================
   Footer
   ============================================ */

.ks-footer-features {
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(105, 108, 255, 0.1);
}

.ks-footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #696cff;
    background: rgba(105, 108, 255, 0.07);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    border: 1px solid rgba(105, 108, 255, 0.15);
    white-space: nowrap;
    transition: background 0.2s;
}

.ks-footer-pill i {
    font-size: 0.82rem;
}

.ks-footer-sep {
    color: #d9dee3;
    font-size: 0.7rem;
}

.ks-footer-copy {
    font-size: 0.8rem;
    color: #a1acb8;
}

.ks-footer-copy strong {
    color: #697a8d;
}

.ks-footer-tagline {
    font-size: 0.78rem;
    color: #b4bec8;
    text-align: center;
}

.ks-footer-highlight {
    color: #696cff;
    font-weight: 500;
}

.ks-footer-credit {
    font-size: 0.8rem;
    color: #a1acb8;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ks-footer-heart {
    color: #ff4d6d;
    font-size: 0.85rem;
    animation: ks-heartbeat 1.4s ease infinite;
}

.ks-footer-author {
    color: #696cff;
}

@keyframes ks-heartbeat {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.3); }
}


/* ============================================
   Select2 - Sneat Theme Sync
   ============================================ */

/* Base selection box */
.select2-container--bootstrap-5 .select2-selection {
    border: 1px solid #d9dee3 !important;
    border-radius: 0.375rem !important;
    min-height: 38px !important;
    background-color: #fff !important;
    font-size: 0.875rem !important;
    color: #697a8d !important;
    display: flex !important;
    align-items: center !important;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

/* Single - fixed height */
.select2-container--bootstrap-5 .select2-selection--single {
    height: 38px !important;
}

/* Multiple - auto height, wrapping tags */
.select2-container--bootstrap-5 .select2-selection--multiple {
    height: auto !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    padding: 4px 8px !important;
    cursor: text !important;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 0 !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Tag chip */
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    background: linear-gradient(135deg, rgba(105,108,255,0.12) 0%, rgba(105,108,255,0.08) 100%) !important;
    border: 1px solid rgba(105, 108, 255, 0.3) !important;
    color: #696cff !important;
    border-radius: 20px !important;
    padding: 2px 10px 2px 8px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    transition: background 0.15s, border-color 0.15s !important;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice:hover {
    background: linear-gradient(135deg, rgba(105,108,255,0.2) 0%, rgba(105,108,255,0.14) 100%) !important;
    border-color: rgba(105, 108, 255, 0.5) !important;
}

/* × remove button - SVG-based (theme uses background-image, not text) */
.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__rendered
    .select2-selection__choice
    .select2-selection__choice__remove {
    width: 0.75rem !important;
    height: 0.75rem !important;
    padding: 0.25em !important;
    margin-right: 0 !important;
    margin-left: 5px !important;
    overflow: hidden !important;
    text-indent: 100% !important;
    white-space: nowrap !important;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23696cff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") 50% / 0.65rem auto no-repeat !important;
    border: 0 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    opacity: 0.65 !important;
    transition: opacity 0.15s !important;
    order: 1 !important;
}
.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__rendered
    .select2-selection__choice
    .select2-selection__choice__remove:hover {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23696cff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") 50% / 0.65rem auto no-repeat !important;
    opacity: 1 !important;
}

/* Inline search input */
.select2-container--bootstrap-5 .select2-selection--multiple .select2-search {
    display: inline-flex !important;
    align-items: center !important;
    flex: 1 1 60px !important;
    min-width: 60px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-search__field {
    height: 26px !important;
    margin: 0 !important;
    padding: 0 2px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    font-size: 0.875rem !important;
    color: #697a8d !important;
    width: 100% !important;
}

/* Rendered (selected) text */
.select2-container--bootstrap-5
    .select2-selection--single
    .select2-selection__rendered {
    color: #697a8d !important;
    line-height: 1 !important;
    padding: 0 2rem 0 0 !important;
    width: 100% !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Placeholder */
.select2-container--bootstrap-5
    .select2-selection--single
    .select2-selection__placeholder {
    color: #b4bec8 !important;
}

/* Dropdown arrow */
.select2-container--bootstrap-5
    .select2-selection--single
    .select2-selection__arrow {
    height: 38px !important;
    width: 2rem !important;
    right: 0.375rem !important;
    top: 0 !important;
}
.select2-container--bootstrap-5
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: #a1acb8 transparent transparent transparent !important;
    border-width: 5px 4px 0 4px !important;
}
.select2-container--bootstrap-5.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent #696cff transparent !important;
    border-width: 0 4px 5px 4px !important;
}

/* Focus / open state */
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #696cff !important;
    box-shadow: 0 0 0 0.2rem rgba(105, 108, 255, 0.15) !important;
    outline: none !important;
}

/* Dropdown container */
.select2-dropdown {
    z-index: 1060 !important;
}
.select2-container--bootstrap-5 .select2-dropdown {
    border: 1px solid #d9dee3 !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 0.5rem 1.5rem rgba(105, 108, 255, 0.15) !important;
    background-color: #fff !important;
    overflow: hidden;
}
.select2-container--bootstrap-5 .select2-dropdown--below {
    border-top-color: #ebebeb !important;
    border-radius: 0 0 0.375rem 0.375rem !important;
}
.select2-container--bootstrap-5 .select2-dropdown--above {
    border-bottom-color: #ebebeb !important;
    border-radius: 0.375rem 0.375rem 0 0 !important;
}

/* Results list scroll area */
.select2-container--bootstrap-5 .select2-results > .select2-results__options {
    max-height: 200px !important;
    overflow-y: auto !important;
    scrollbar-width: thin;
    scrollbar-color: #c8caff #f4f4fb;
}
.select2-container--bootstrap-5
    .select2-results
    > .select2-results__options::-webkit-scrollbar {
    width: 5px;
}
.select2-container--bootstrap-5
    .select2-results
    > .select2-results__options::-webkit-scrollbar-track {
    background: #f4f4fb;
    border-radius: 10px;
}
.select2-container--bootstrap-5
    .select2-results
    > .select2-results__options::-webkit-scrollbar-thumb {
    background: #c4c6ff;
    border-radius: 10px;
}
.select2-container--bootstrap-5
    .select2-results
    > .select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #696cff;
}

/* Options */
.select2-container--bootstrap-5 .select2-results__option {
    padding: 0.5rem 0.875rem !important;
    font-size: 0.875rem !important;
    color: #697a8d !important;
    line-height: 1.5 !important;
    display: flex !important;
    align-items: center !important;
    transition: background-color 0.12s ease;
}
.select2-container--bootstrap-5 .select2-results__option--highlighted,
.select2-container--bootstrap-5
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #696cff !important;
    color: #fff !important;
}
.select2-container--bootstrap-5 .select2-results__option[aria-selected="true"],
.select2-container--bootstrap-5 .select2-results__option--selected {
    background-color: rgba(105, 108, 255, 0.08) !important;
    color: #696cff !important;
    font-weight: 500 !important;
}
.select2-container--bootstrap-5
    .select2-results__option--selected.select2-results__option--highlighted,
.select2-container--bootstrap-5
    .select2-results__option[aria-selected="true"].select2-results__option--highlighted {
    background-color: #696cff !important;
    color: #fff !important;
    font-weight: 400 !important;
}

/* Search field inside dropdown */
.select2-container--bootstrap-5 .select2-search--dropdown {
    padding: 0.6rem 0.75rem !important;
    border-bottom: 1px solid #ebebeb !important;
    background-color: #fff !important;
}
.select2-container--bootstrap-5
    .select2-search--dropdown
    .select2-search__field {
    border: 1px solid #d9dee3 !important;
    border-radius: 0.375rem !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 0.875rem !important;
    color: #697a8d !important;
    background-color: #fff !important;
    outline: none !important;
    width: 100% !important;
    box-shadow: none !important;
    line-height: 1.5 !important;
}
.select2-container--bootstrap-5
    .select2-search--dropdown
    .select2-search__field:focus {
    border-color: #696cff !important;
    box-shadow: 0 0 0 0.15rem rgba(105, 108, 255, 0.15) !important;
}
.select2-container--bootstrap-5
    .select2-search--dropdown
    .select2-search__field::placeholder {
    color: #b4bec8 !important;
}

/* No results */
.select2-container--bootstrap-5 .select2-results__message {
    color: #a1acb8 !important;
    font-size: 0.875rem !important;
    padding: 0.6rem 0.875rem !important;
    text-align: center !important;
}

/* ============================================
   Badges - Solid & Prominent
   ============================================ */

.badge.bg-label-primary {
    background-color: #696cff !important;
    color: #fff !important;
}
.badge.bg-label-success {
    background-color: #28c76f !important;
    color: #fff !important;
}
.badge.bg-label-danger {
    background-color: #ff3e1d !important;
    color: #fff !important;
}
.badge.bg-label-warning {
    background-color: #ffab00 !important;
    color: #fff !important;
}
.badge.bg-label-info {
    background-color: #03c3ec !important;
    color: #fff !important;
}
.badge.bg-label-secondary {
    background-color: #8592a3 !important;
    color: #fff !important;
}


table.dataTable thead th {
    vertical-align: middle;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin: 0;
}

div.dataTables_wrapper div.dataTables_info {
    padding-top: 0.5rem;
}

.dt-buttons .btn {
    border-radius: 0.375rem !important;
}

/* SweetAlert2 - raise above navbar (1075) and sidebar (1080) */
.swal2-container {
    z-index: 1200 !important;
}

/* SweetAlert2 - custom loader spinner */
.ks-spin-popup {
    width: auto !important;
    min-width: 170px !important;
    padding: 2.25rem 2.75rem !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 12px 40px rgba(105, 108, 255, 0.18) !important;
}
.ks-spin-popup .swal2-html-container {
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.1rem !important;
}
.ks-spin-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(from 180deg at 50% 50%, #696cff 0%, #9e78ff 45%, transparent 68%);
    -webkit-mask: radial-gradient(farthest-side, transparent 61%, #000 62%);
    mask: radial-gradient(farthest-side, transparent 61%, #000 62%);
    animation: ks-spin 0.85s linear infinite;
    filter: drop-shadow(0 0 8px rgba(105, 108, 255, 0.45));
}
@keyframes ks-spin {
    to { transform: rotate(360deg); }
}
.ks-spin-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #697a8d;
    letter-spacing: 0.4px;
    animation: ks-pulse-text 1.4s ease-in-out infinite;
}
@keyframes ks-pulse-text {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

/* Offcanvas - custom backdrop
   navbar = 1075, sidebar = 1080, offcanvas = 1090
   backdrop sits at 1085: above navbar + sidebar, below the drawer */
#ksDrawerBackdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1085;
    opacity: 0;
    transition: opacity 0.2s ease;
}
#ksDrawerBackdrop.ks-bd-show {
    opacity: 1;
}

/* Offcanvas - form wrapper must join the flex column so body fills and
   footer pins to the bottom */
.offcanvas > form {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}


.offcanvas.offcanvas-end {
    width: 680px;
}

.offcanvas-header {
    border-bottom: 1px solid #e7e7e9;
    padding: 1.25rem 1.5rem;
}

.offcanvas-footer {
    border-top: 1px solid #e7e7e9;
    padding: 1.25rem 1.5rem;
}

.offcanvas-body {
    padding: 1.5rem;
    overflow-y: auto;
}
.web-logo-img {
    width: 170px;
}

/* ============================================
   Login Page
   ============================================ */

.ks-auth-bg {
    background: #f0f1fb;
}

.ks-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

/* ── Left cover panel ── */
.ks-auth-cover {
    flex: 0 0 42%;
    background: linear-gradient(145deg, #696cff 0%, #4f46e5 55%, #3730a3 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 3.5rem;
    position: relative;
    overflow: hidden;
}
.ks-auth-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(255,255,255,0.10) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(255,255,255,0.06) 0%, transparent 45%);
    pointer-events: none;
}
.ks-auth-cover-inner {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 340px;
}

/* Logo on cover */
.ks-auth-logo {
    margin-bottom: 2.5rem;
}
.ks-auth-logo img {
    width: 280px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    display: block;
    margin: 0;
}

.ks-auth-cover-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 0.875rem;
}
.ks-auth-cover-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

/* Feature list */
.ks-auth-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}
.ks-auth-feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.855rem;
    font-weight: 500;
}
/* span wraps the icon so flex works correctly on the container, not the <i> */
.ks-auth-feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ks-auth-feature-icon i {
    font-size: 1rem;
    color: #fff;
    line-height: 1;
}

/* ── Right form panel ── */
.ks-auth-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: #f0f1fb;
}

/* Form card */
.ks-auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 4px 24px rgba(105, 108, 255, 0.08), 0 1px 4px rgba(0,0,0,0.04);
}

/* Mobile branded header (hidden on desktop) */
.ks-auth-mobile-header {
    display: none;
    background: linear-gradient(145deg, #696cff 0%, #4f46e5 58%, #3730a3 100%);
    padding: 2.75rem 1.5rem 4.5rem;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}
.ks-auth-mobile-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.09) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.ks-auth-mobile-header img {
    width: 155px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    display: block;
    margin: 0 auto 0.5rem;
    position: relative;
    z-index: 1;
}
.ks-auth-mobile-header p {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ks-auth-card-header {
    margin-bottom: 1.75rem;
}
.ks-auth-card-header h4 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #566a7f;
    margin-bottom: 0.3rem;
}
.ks-auth-card-header p {
    color: #a1acb8;
    font-size: 0.875rem;
    margin: 0;
}

/* Input group */
.ks-auth-input-group {
    position: relative;
}
.ks-auth-input-group .form-control {
    padding-left: 2.75rem;
    height: 46px;
    border-radius: 0.5rem;
    border-color: #d9dee3;
    font-size: 0.9rem;
    background: #f8f8ff;
}
.ks-auth-input-group .form-control:focus {
    border-color: #696cff;
    background: #fff;
    box-shadow: 0 0 0 0.18rem rgba(105,108,255,0.15);
}
.ks-auth-input-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b4bec8;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 5;
}
.ks-auth-toggle-pw {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b4bec8;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 5;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    transition: color 0.15s;
}
.ks-auth-toggle-pw:hover {
    color: #696cff;
}

/* Demo credentials hint */
.ks-demo-hint {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(105, 108, 255, 0.06);
    border: 1px solid rgba(105, 108, 255, 0.18);
    border-radius: 0.5rem;
    padding: 0.55rem 0.875rem;
    font-size: 0.82rem;
    color: #697a8d;
}
.ks-demo-hint i {
    font-size: 1rem;
    color: #696cff;
    flex-shrink: 0;
}
.ks-demo-hint strong {
    color: #696cff;
    font-weight: 600;
}

/* Sign in button */
.btn-ks-login {
    height: 46px;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    background: linear-gradient(135deg, #696cff 0%, #4f46e5 100%);
    border: none;
    transition: box-shadow 0.2s, transform 0.15s;
}
.btn-ks-login:hover {
    box-shadow: 0 6px 20px rgba(105,108,255,0.38);
    transform: translateY(-1px);
}
.btn-ks-login:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .ks-auth-wrapper {
        flex-direction: column;
    }
    .ks-auth-cover {
        display: none;
    }
    .ks-auth-mobile-header {
        display: block;
    }
    .ks-auth-form-side {
        align-items: center;
        justify-content: flex-start;
        padding: 0 1.25rem 2.5rem;
        flex: 1;
    }
    .ks-auth-card {
        margin-top: -2rem;
        width: 100%;
        max-width: 480px;
        box-shadow: 0 8px 32px rgba(105,108,255,0.13), 0 2px 8px rgba(0,0,0,0.06);
    }
}
@media (max-width: 575.98px) {
    .ks-auth-mobile-header     { padding: 2.25rem 1.25rem 4rem; }
    .ks-auth-form-side         { padding: 0 0.875rem 2rem; }
    .ks-auth-card              { padding: 1.75rem 1.25rem; border-radius: 0.875rem; }
    .ks-auth-card-header h4    { font-size: 1.25rem; }
}
