:root {
    --swiper-pagination-color: rgb(94, 7, 251);
}

.login {
    background: radial-gradient(
        circle at 120% 135%,
        #3a0ca3 0%,
        #0d0d0d 50%,
        #0a0a0a 100%
    );
}

.bg-secondary {
    background-color: #191919;
}

.login .fi-fo-field-wrp-label .leading-6 {
    color: #949494;
}

.login .fi-input-wrp {
    background: transparent;
    border: 1px solid #949494;
}

.login .fi-input {
    color: white;
}

.login input:-webkit-autofill {
    box-shadow: 0 0 0 1000px #191919 inset;
    -webkit-text-fill-color: #fff;
}

.login .fi-simple-main {
    border-radius: 35px;
}

.login .fi-checkbox-input {
    background-color: transparent;
    border: 1px solid #949494;
}

.login .fi-checkbox-input:checked {
    background-color: rgb(var(--primary-500)) !important;
    border: 1px solid rgb(var(--primary-500)) !important;
}

.login .fi-simple-main {
    position: relative;
}

.login .fi-simple-main::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: radial-gradient(
        farthest-side at top left, rgba(144, 0, 255, 0.4), transparent
    ),
    radial-gradient(
        farthest-side at top right, rgba(144, 0, 255, 0.4), transparent 20%
    ),
    radial-gradient(
        farthest-side at bottom right, rgba(144, 0, 255, 0.8), transparent
    );
    border-radius: 35px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    z-index: -1;
}

@media (max-width: 640px) {
    .fi-simple-main {
        max-width: 85%;
    }
}

.kpis-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.kpi-card {
    border-radius: 10px;
    padding: 2rem;
    flex: 1 1 calc(25% - 1rem);
    min-width: 250px;
}

.fi-sidebar-item-button {
    transition: all .25s ease !important;
}

.fi-sidebar-item-button:hover:not(.bg-gray-100) {
    background-color: rgba(255, 255, 255, .25) !important;
}

.fi-body {
    background-color: #EFEFF7 !important;
}

.fi-ta-row {
    background-color: white !important;
    border-color: #efeff7 !important;
    border-top-width: 10px !important;
}

.fi-ta-pagination {
    border-top: none !important;
}

.fi-ta-row a:first-child {
    position: relative;
}

.fi-ta-row {
    transition: all .25s ease;
}

.fi-ta-row .fi-ta-cell:first-child a::before {
    content: '';
    width: 0;
    background-color: rgb(94, 7, 251);
    height: 100%;
    position: absolute;
    left: -12px;
    top: 0;
    opacity: 0;
    transition: all .25s ease;
}

.fi-ta-row:hover .fi-ta-cell:first-child a::before {
    opacity: 1;
    width: 5px;
}

.fi-ta-row:hover {
    background-color: #fafafa !important;
}

#pwa-install-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    gap: 0.75rem;
    max-width: calc(100% - 40px);
}

#pwa-install-banner button {
    cursor: pointer;
    border-radius: 6px;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

#pwa-install-btn:hover {
    background-color: #6e1dff;
}

#pwa-dismiss-btn {
    background-color: transparent;
    color: #9ca3af;
}

#pwa-dismiss-btn:hover {
    color: #f3f4f6;
}

@media (max-width: 991px) {
    #pwa-install-banner {
        width: 100% !important;
        bottom: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        justify-content: space-between;
    }
}