/* Nền gradient + hiệu ứng particle wave 3D cho trang đăng nhập (Filament simple layout). */

.fi-simple-layout {
    position: relative;
    overflow: hidden;
}

#home_wave {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    background: red;
    background-image: linear-gradient(to right, red, #f06d06);
    background-image: -webkit-gradient(linear, left top, right top, from(red), to(#f06d06));
}

#home_wave canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
