
        @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html, body {
            height: 100%;
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(180deg, #1F1F2B 0%, #2E2E2E 60%, #3E1A3B 100%);
            color: #FFF;
        }

        /* Conteneur principal */
        .login-container {
            display: flex;
            min-height: 100vh;
            position: relative;
        }
        /* Texte bas‐gauche */
        .login-info {
            position: fixed;
            bottom: 1rem;
            left: 1rem;
            z-index: 2000;
            color: #BBB;
            font-size: 0.85rem;
            line-height: 1.2;
        }
        .login-info span {
            display: block;
        }

        /* Formulaire centré & overlay */
        .login-form-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .login-form-container::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(46,46,46,0.8);
            backdrop-filter: blur(6px);
            z-index: 1;
        }
        .form-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 400px;
            padding: 2rem 1.5rem;
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            box-shadow: 0 12px 24px rgba(0,0,0,0.6);
        }
        .logo {
            display: block;
            margin: 0 auto 1.5rem;
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }
        .form-wrapper h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Champs et labels */
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #BBB;
            font-size: 0.9rem;
        }
        .form-group input {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 6px;
            color: #FFF;
            font-size: 0.95rem;
        }
        .form-group input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(218,66,245,0.6);
        }

        /* Actions du formulaire */
        .form-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            margin-bottom: 1.25rem;
        }
        .form-actions a {
            color: #DA42F5;
            text-decoration: none;
        }
        .form-actions a:hover {
            text-decoration: underline;
        }
        .remember {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .remember input {
            accent-color: #DA42F5;
            width: 16px;
            height: 16px;
        }

        /* Bouton */
        .btn-submit {
            width: 100%;
            padding: 0.75rem;
            background: #DA42F5;
            border: none;
            border-radius: 6px;
            color: #FFF;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background: #b535c8;
        }

        /* Lien bas‐de‐page */
        .text-center {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        .text-center a {
            color: #DA42F5;
            font-weight: 600;
            text-decoration: none;
        }
        .text-center a:hover {
            text-decoration: underline;
        }

        /* Image décorative */
        .login-image-container {
            flex: 1;
            background: url('/img/laylaxx.png') center/cover no-repeat;
            position: relative;
        }
        .login-image-container .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(30,30,30,0.6) 0%, rgba(30,30,30,0.8) 100%);
        }

        /* Responsive mobile */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
                justify-content: center;
            }
            .login-form-container {
                width: 100%;
                min-height: 100vh;
            }
            .login-image-container {
                display: none;
            }
            .form-wrapper {
                margin: 0 1rem;
            }
            .login-info {
                display: none;
            }
        }

        .brand-area {
            position: absolute; bottom: 2rem; left: 2rem; line-height: 1.2; z-index: 1000;
        }
        .brand-area .gestion {
            text-transform: uppercase; font-size: 1rem; color: #999;
            margin-bottom: 1.5rem;
        }
        .brand-area .staff {
            font-size: 1.7rem; font-weight: 700; color: #DA42F5;
        }
        .brand-area .city {
            font-size: 1.7rem; font-weight: 700; color: #fff;
            margin-top: -4px; display: block;
        }
    