.fi-simple-layout {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: transparent !important;
}

#login-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.fi-simple-main-ctn {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background: transparent !important;
}

.fi-simple-main {
    width: 100%;
    max-width: 28rem !important;
    margin: 0 !important;
    margin-right: 10% !important;
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dark .fi-simple-main {
    background: rgba(15, 23, 41, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ensure the content inside is also aligned well */
.fi-simple-page-content {
    width: 100%;
}

/* Make it responsive */
@media (max-width: 768px) {
    .fi-simple-main-ctn {
        justify-content: center;
        padding: 1rem;
    }
    .fi-simple-main {
        margin-right: 0 !important;
    }
}

.fi-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.fi-logo:hover {
    transform: scale(1.05);
}

/* Ajuste de Padding do Logo no Painel */
.fi-sidebar-header .fi-logo,
.fi-topbar .fi-logo {
    padding-top: 1.5rem !important;
}

