﻿.loginContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
}

.loginCard {
    width: 420px;
    max-width: 92vw;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

.loginHeader {
    background-color: black;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.loginLogo {
    max-height: 75px;
    height: auto;
    width: auto;
}

.loginBody {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loginLabel {
    font-size: 12px;
    opacity: 0.75;
}

.loginInput {
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.18);
    padding: 0 12px;
    outline: none;
}

.loginInput:focus {
    border-color: rgba(58, 198, 244, 0.9);
    box-shadow: 0 0 0 3px rgba(58, 198, 244, 0.18);
}

.loginBtn {
    margin-top: 6px;
    height: 42px;
    border-radius: 10px;
    font-weight: 600;
}

.loginError {
    margin-top: 6px;
    font-size: 13px;
    color: #b00020;
}

.fm-content-demo {
    position: relative;
    flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background-color: #1b1b1b;
}

.section {
    position: absolute;
    inset: 0;
}

.section.visible {
    visibility: visible;
    pointer-events: auto;
}

.section.hidden {
    display: none !important;
}

.section.visible {
    display: block;
}

.fm-sidebar-demo {
    width: 260px;
    background: black;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.invisible-frame {
    opacity: 0;
    pointer-events: none;
}

.fm-sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    animation: fmOverlayFadeIn 0.22s ease-out forwards;
}

.fm-sidebar-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: black;
    border-right: 3px solid #047eb3;
    transform: translateX(-100%);
    animation: fmSidebarSlideIn 0.28s ease-out forwards;
    will-change: transform;
}

.fm-sidebar-popup-body {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.fm-sidebar-popup button {
    padding: 12px 14px;
    margin-bottom: 6px;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    border: none;
    background-color: black;
}

.fm-menu-item {
    color: white;
}

    .fm-menu-item.active,
    .fm-menu-item:active {
        border-radius: 0;
        background-color: rgba(17, 141, 255, 0.4);
        border-left: 3px solid rgb(17, 141, 255);
        color: rgb(17, 141, 255);
    }

@keyframes fmSidebarSlideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes fmOverlayFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}