
        .login-buttons {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 2.5vh;
        }

        .btn-login {
            width: 100%;
            padding: 18px 20px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-align: center;
        }

        .btn-login-primary {
            background-color: #649d50;
            color: #F7F7F7;
        }

        .btn-login-primary:hover {
            background-color: #89c75b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(100, 157, 80, 0.3);
        }

        .btn-login-secondary {
            background-color: #F7F7F7;
            border: 2px solid #f08d35;
            color: #1e1e1d;
        }

        .btn-login-secondary:hover {
            background-color: #f08d35;
            color: #F7F7F7;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(240, 141, 53, 0.3);
        }

        .btn-login-pointage {
            background-color: #F7F7F7;
            border: 2px solid #1f658e;
            color: #1e1e1d;
        }

        .btn-login-pointage:hover {
            background-color: #1f658e;
            color: #F7F7F7;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(31, 101, 142, 0.3);
        }

        .separator {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 1.9vh;
            margin: 1.27vh 0;
        }

        .separator-line {
            flex: 1;
            height: 1px;
            background-color: #6e6f75;
        }

        .separator-text {
            color: #6e6f75;
            font-size: 14px;
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            background-color: #F7F7F7;
            padding: 10vh 3.75vw;
        }

        .login-container {
            width: 100%;
            max-width: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10vh;
            flex: 1;
            justify-content: center;
        }

        /* Media queries pour responsive */
        @media (min-width: 769px) {
            /* Desktop - s'adapte depuis mobile */
            body {
                padding: 10vh 3.25vw;
            }
        }

        @media (max-width: 768px) {
            /* Tablette */
            body {
                padding: 10vh 5vw;
            }

            .login-container {
                max-width: 90%;
            }
        }

        @media (max-width: 480px) {
            /* Mobile - base mobile-first */
            body {
                padding: 10vh 3.75vw;
            }

            .login-container {
                max-width: 100%;
            }

            .btn-login {
                font-size: 1rem;
                padding: 1rem 1.125rem;
            }
        }

        /* Widget Pointage */
        .pointage-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .pointage-overlay.active {
            display: flex;
        }

        .pointage-widget {
            background: #F7F7F7;
            border-radius: 10px;
            padding: 1.5rem 2rem;
            width: 100%;
            max-width: 320px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .pointage-close {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            width: 32px;
            height: 32px;
            border: none;
            background: none;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pointage-close svg {
            width: 24px;
            height: 24px;
        }

        .pointage-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e1e1d;
            margin-bottom: 1.5rem;
            padding-right: 2rem;
        }

        .pointage-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .pointage-group {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .pointage-group label {
            font-size: 0.95rem;
            font-weight: 700;
            color: #1e1e1d;
        }

        .pointage-input,
        .pointage-select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #7d7d7d;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: rgba(240, 240, 240, 0.5);
            color: #1e1e1d;
            box-sizing: border-box;
        }

        .pointage-input:focus,
        .pointage-select:focus {
            outline: none;
            border-color: #1f658e;
        }

        .pointage-validate {
            margin-top: 0.5rem;
            padding: 14px 20px;
            background: #1f658e;
            color: #F7F7F7;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pointage-validate:hover {
            background: #2a7ba3;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(31, 101, 142, 0.3);
        }