 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .login-page-wrapper {
        min-height: calc(100vh - 200px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f5f7fb 0%, #e8ecf2 100%);
        padding: 40px 24px;
    }

    .login-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Breadcrumb */
    .breadcrumb-section {
        background: white;
        padding: 10px 20px;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
        color: #5a6e7c;
    }

    .breadcrumb-item.active {
        color: #006B52;
        font-weight: 600;
    }

    .breadcrumb-separator {
        color: #cbd5e0;
        font-size: 0.75rem;
    }

    /* Login Card */
    .login-card {
        background: white;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
        overflow: hidden;
        transition: transform 0.2s;
    }

    /* Header réduit */
    .login-header {
        text-align: center;
        padding: 24px 32px 16px;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        border-bottom: 1px solid #e2e8f0;
    }

    .login-icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #006B52, #008060);
        border-radius: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        box-shadow: 0 6px 16px rgba(0, 107, 82, 0.25);
    }

    .login-icon svg {
        color: white;
    }

    .login-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a2c3e;
        margin-bottom: 4px;
    }

    .login-header p {
        color: #5a6e7c;
        font-size: 0.8rem;
    }

    /* Form */
    .login-form {
        padding: 28px 32px 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #1a2c3e;
        margin-bottom: 6px;
    }

    .form-label svg {
        color: #006B52;
    }

    .form-input {
        width: 100%;
        padding: 12px 14px;
        font-size: 0.95rem;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        transition: all 0.2s;
        background: #ffffff;
        color: #1a2c3e;
    }

    .form-input:focus {
        outline: none;
        border-color: #006B52;
        box-shadow: 0 0 0 3px rgba(0, 107, 82, 0.1);
    }

    .form-input::placeholder {
        color: #a0aec0;
        font-size: 0.85rem;
    }

    /* Password wrapper */
    .password-wrapper {
        position: relative;
    }

    .password-wrapper .form-input {
        padding-right: 46px;
    }

    .password-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a0aec0;
        transition: color 0.2s;
    }

    .password-toggle:hover {
        color: #006B52;
    }

    /* Form Options */
    .form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.8rem;
        color: #5a6e7c;
        cursor: pointer;
        position: relative;
        padding-left: 26px;
    }

    .checkbox-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkmark {
        position: absolute;
        left: 0;
        height: 17px;
        width: 17px;
        background-color: #ffffff;
        border: 2px solid #cbd5e0;
        border-radius: 5px;
        transition: all 0.2s;
    }

    .checkbox-label:hover input ~ .checkmark {
        border-color: #006B52;
    }

    .checkbox-label input:checked ~ .checkmark {
        background-color: #006B52;
        border-color: #006B52;
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .checkbox-label input:checked ~ .checkmark:after {
        display: block;
    }

    .checkbox-label .checkmark:after {
        left: 4px;
        top: 1px;
        width: 4px;
        height: 8px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .forgot-link {
        font-size: 0.8rem;
        color: #006B52;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .forgot-link:hover {
        color: #004d3c;
        text-decoration: underline;
    }

    /* Form Actions */
    .form-actions {
        display: flex;
        gap: 14px;
        margin-bottom: 20px;
    }

    .btn-login, .btn-back {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s;
        border: none;
    }

    .btn-login {
        background: linear-gradient(135deg, #006B52, #008060);
        color: white;
        box-shadow: 0 4px 10px rgba(0, 107, 82, 0.3);
    }

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0, 107, 82, 0.4);
    }

    .btn-back {
        background: #f1f5f9;
        color: #475569;
        border: 1px solid #e2e8f0;
    }

    .btn-back:hover {
        background: #e2e8f0;
        transform: translateY(-2px);
    }

    /* Login Footer */
    .login-footer {
        text-align: center;
        padding: 16px 32px 24px;
        border-top: 1px solid #e2e8f0;
        background: #fafcff;
    }

    .login-footer p {
        color: #5a6e7c;
        font-size: 0.8rem;
    }

    .register-link {
        color: #006B52;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }

    .register-link:hover {
        color: #004d3c;
        text-decoration: underline;
    }

    /* Alert Area */
    .alert-area {
        margin-bottom: 18px;
    }

    /* Responsive */
    @media (max-width: 640px) {
        .login-page-wrapper {
            padding: 20px 16px;
        }

        .login-header {
            padding: 20px 24px 12px;
        }

        .login-icon {
            width: 48px;
            height: 48px;
        }

        .login-icon svg {
            width: 26px;
            height: 26px;
        }

        .login-header h2 {
            font-size: 1.3rem;
        }

        .login-header p {
            font-size: 0.75rem;
        }

        .login-form {
            padding: 20px 24px 16px;
        }

        .form-actions {
            flex-direction: column;
            gap: 10px;
        }

        .btn-login, .btn-back {
            padding: 10px 14px;
        }

        .form-options {
            flex-direction: column;
            align-items: flex-start;
        }

        .login-footer {
            padding: 14px 24px 20px;
        }

        .breadcrumb-section {
            padding: 8px 16px;
        }
    }

    @media (max-width: 480px) {
        .login-form {
            padding: 16px 20px 12px;
        }

        .form-input {
            padding: 10px 12px;
            font-size: 0.9rem;
        }
    }